摘要:
网页可见区域宽: document.body.clientWidth网页可见区域高: document.body.clientHeight网页可见区域宽: document.body.offsetWidth (包括边线的宽)网页可见区域高: document.body.offsetHeight (包括边线的高)网页正文全文宽: document.body.scrollWidth网页正文全文高: document.body.scrollHeight网页被卷去的高: document.body.scrollTop网页被卷去的左: document.body.scrollLeft网页正文部分上: w 阅读全文
摘要:
public string BindGrid(string page,string rows) { int pageIndex = 0; if (pageIndex GetPropertyValue(p, orderBy.SelectedValue.Trim())).Skip((pageIndex - 1) * pageSize).Take(pageSize); // 第2种 var aClass = LinqOrderBy.OrderByDescending(q_count, orderby).Skip((pageIndex - 1) * pageSize).Take(pageSize).. 阅读全文
摘要:
1. 使用JavaScriptSerializer,位于命名空间System.Web.Script.Serialization,使用:序列化为JSON字符串:CodeUser user =new User { Name ="TerryLee", Age =20};JavaScriptSerializer serializer =new JavaScriptSerializer();string result = serializer.Serialize(user);反序列化:CodeString input ="";JavaScriptSerialize 阅读全文