顶,用分页,每页一条,上一页就是上一条,下一页就是下一条 用个分页控件啊,加我QQ我发给你 select top 1 * from Tb where id <10 order by id desc select top 1 * from Tb where id>10 order by id 分页不可以么,楼主 ? 参考下这里 www.17aspx.com select top 1 * from Tb where id <10 order by id desc <
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 ......
'Global.asax Sub Application_Start(ByVal sender As Object, ByVal e As EventArgs) '在应用程序启动时运行的代码 Dim RequestUrl As String = HttpContext.Current.Requ ......