改編自php版本,原文:
jQuery PHP實作瀏覽更多內容 http://www.helloweba.com/view-blog-130.html
這裡記錄.net 下的實作
一、先建立資料庫表test,並插入一些測試資料:
go
if exists (select * from sysobjects where name='test')
drop table [test]
go
CREATE TABLE [test](
[id] [int] IDENTITY(1,1),
[author] [varchar](50),
[content] [varchar](2000),
[createOn] [datetime]
)
declare @index int;
set @index = 1;
while(@index begin
insert into test([author],[content],[createOn])
values
('author' cast(@index as varchar(4)),'content' cast(@index as varchar(4)),DATEADD(DAY,@index,getdate()))
set @index = @index 1
end
go
二、建立一個html檔案
::點選載入更多內容::