摘要:
using System; using System.Collections.Generic; using System.Configuration; using System.Data; using System.Data.SqlClient; using System.Linq; using System.Text; using System.Threading.Tasks; name... 阅读全文
摘要:
using PWMIS.DataMap.Entity; using System; using System.Collections.Generic; using System.Linq; using System.Web; using PWMIS.Common; namespace GoOver. 阅读全文
摘要:
//获取地址栏参数 function GetQueryString(name) { var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)"); var r = window.location.search.substr(1).match(reg); if (... 阅读全文
摘要:
SELECT * FROM ( SELECT *,ROW_NUMBER() OVER(ORDER BY DjLsh) AS rowId FROM dbo.UsersH ) AS b WHERE b.rowId BETWEEN 10 AND 20 AND (IsDelete='0' or IsDelete is NULL) 阅读全文