asp.net怎样让文章分页
各位高手:谢谢了,很急不知怎样解决
可以利用JS+XML
在后台发布的时候,插入一个分页符
显示的时候根据这个分页符进行分页。
插入一个分页符 这个方法很好
使用分页控件。
谢谢各位了已经解决了:http://topic.csdn.net/u/20081205/13/874f3dcf-bae0-40b3-acd5-8d474edc24e8.html哈哈
这个办法会让文章丢失格式 手动插入分页符 或者根据高度分页比较好
相关问答:
select top 12 * from Product where [id] not in (select top 12 [id] from Product)
这样可以分页,但是我在后面想加个条件
select top 12 * from Product where [id] not in (select top 12 [id] from Prod ......
首先是webbrowser打印
怎么去掉左上角的 title; 右上角的 页码;左下角的地址;右下角的日期?分别设置。
页面内容超过纸张大小,只能打印一部分,怎么解决?有没有什么缩放功能?
其次是水晶报表的打印, ......
一个TextBox,一个Calendar控件,我想当TextBox得到焦点时Calendar控件就隐藏起来,我下面的代码老是隐藏不了?
C#:
this.tbInHospitalDateBegin.Attributes.Add("onfocus", "calVisible(& ......
前段时间碰到一道面试题如下:
test.aspx页面有如下代码:
Response.Write(Test.GetDate());
Test类如下:
public class Test
{
static string dt="";
public static s ......