用資料庫的方式編輯上一頁 下一頁

2022-04-25 05:00:54 字數 1006 閱讀 9755

using(sqlconnection con=new sqlconnection(@"server=.."))

guid article_id=new guid("文章的id號")

guid perarticleid=guid.empty;

guid nextarticleid=guid.empty;

//獲取文章欄目

string strsql=string.format("select m_categoryid from a_cms_content where m_id=''",article_id);

sqlcommand cmd=new sqlcommand(strsql,con);  // 執行sql命令  建立資料庫連線物件

cmd.connection=con;  //和資料庫真正的連線上

con.open();

guid categoryid=(guid)cmd.executescalar();  //獲取第乙個欄目

//獲取欄目下文章

strsql=string.format("select m_id from a_cms_content where m_categoryid=''",categoryid);

cmd=new sqlcommand(strsql,con);

datatable dtids=new datatable();

sqldataadapter  sda=new sqldateadapter(cmd);  //是實現資料和表的乙個橋梁

sda.fill(dtids);

stringbuilder sb=new stringbuilder();

for(int i=0; iif((guid)dtids.rows[i][0]==articleid)

if(i==dtids.rows.count-1)

else

}// }

// zjc.text = tr.tostring();

= this.tags;

//}

CDSN上一頁下一頁功能模仿

從後台讀取記錄,如果資料過多,就需要劃分多頁去顯示,本章就是模仿cdsn來實現該功能的,採用asp動態語言實現的,求噴我,css這部分我完全是copy過來的,只改了一點,我主要完成的是asp後面的 本章也是做乙個記錄,方便後面專案中使用,如上圖所示。新建pagelist.css檔案 css docu...

php獲取文章上一頁與下一頁的方法

本文例項講述了 先看個例子 1,2,3,4,5.假如上面5個是id了,我要對我們要用order by id asc得出的排序應該是,4,好了原理就這麼簡.sql實現方法,如下 如下 sql select 字段 from 表名 where id 3 order by id asc limit 1 得出...

返回上一頁的實現

方法 一 以按鈕點選的方式實現 input type button name submit value onclick j ascript window.history.back 1 或者 input type button name submit value onclick j ascript h...