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 ......