随笔 - 54  文章 - 17 评论 - 0 trackbacks - 3
08 2008 档案
sql 分页
摘要: SELECT TOP 10 * FROM Approve WHERE (ID NOT IN ( SELECT TOP 10*pageindex id FROM Approve ORDER BY id ) ) ORDER BY ID pageindex 为页数 阅读全文
posted @ 2008-08-26 12:36 秦岭过客| 编辑
DropdownList绑定
摘要: this.DropDownList4.DataSource = Ht; this.DropDownList4.DataValueField = "key"; this.DropDownList4.DataTextField = "value"; this.DropDownList4.DataBind();阅读全文
posted @ 2008-08-26 11:51 秦岭过客| 编辑