当前位置:首页 > 文章,记录按内容分页显示,根据文章内容按字数进行分页

文章,记录按内容分页显示,根据文章内容按字数进行分页

点击次数:951  更新日期:2010-12-28
\n

在很多时候我们对一些文章很长时,往往浏览时用鼠标滑来滑去非常麻烦。要是我们对这篇文章划分为几个
页面,用不同的面页去浏览不但看起来很爽,而且效率方面也是大的提高了。

下面是一段代码,给大家做个参考:
先从数据库中检索出要文章,(很长的文章)

\n

<!–

\n

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

\n

–>private string OutputArticle()
{//Only output one Record of the “AriticID” is 2
string m_strRet = “”;
。。。。
//检索数据库文章的代码。
return m_strRet;
}

\n