上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 25 下一页
摘要: 1,一般处理程序中context.Response.ContentType = "text/plain",则 ajax参数中 也是 text 类型。2,一般处理程序中 转化为json数据格式:命名 空间:using Newtonsoft.Json;代码:string strjson = JavaS... 阅读全文
posted @ 2014-09-22 16:54 Coding_Yong 阅读(281) 评论(0) 推荐(0) 编辑
摘要: 命名空间using Newtonsoft.Json;实例代码 /// /// 将list集合转换为json /// /// Dt /// JSON字符串 public static string List2Json(... 阅读全文
posted @ 2014-09-22 16:44 Coding_Yong 阅读(267) 评论(0) 推荐(0) 编辑
摘要: var name = "The Window";var object = { name: "My Object", getNameFunc: function () { return function () { return this.name; ... 阅读全文
posted @ 2014-09-19 17:51 Coding_Yong 阅读(188) 评论(0) 推荐(0) 编辑
摘要: http://xiaolele.iteye.com/blog/682287 阅读全文
posted @ 2014-09-19 17:26 Coding_Yong 阅读(241) 评论(0) 推荐(0) 编辑
摘要: var a = "Hello World";function test() { alert(window.a); // "Hello World" alert(a); //underfined JavaScript 在执行的时候 会对全局的变量(包括局部变量进行检测)... 阅读全文
posted @ 2014-09-19 15:27 Coding_Yong 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 原理:PageSize, PageIndex;升序 order by a asca的 值 大于, 上一页数据 最大的 a值。降序 order by a desca的 值 小于, 上一页数据 最小的 a值。代码实例USE [SZSQ]GO/****** Object: StoredProcedur... 阅读全文
posted @ 2014-09-16 09:43 Coding_Yong 阅读(751) 评论(0) 推荐(0) 编辑
摘要: 继承时,派生类的方法表 添加了所有继承的虚方法 记录项,基类型变量只能访问派生类类型 对象方法表中 继承 基类的方法记录项。 阅读全文
posted @ 2014-08-20 15:19 Coding_Yong 阅读(844) 评论(0) 推荐(0) 编辑
摘要: public sealed class classroom { private List student = new List(); private List student1 = new List(); public List Student ... 阅读全文
posted @ 2014-07-24 10:41 Coding_Yong 阅读(637) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/RonoTian/article/details/2900714 阅读全文
posted @ 2014-07-17 12:34 Coding_Yong 阅读(194) 评论(0) 推荐(0) 编辑
摘要: 从A表随机取2条记录,用SELECT TOP 10 * FROM ywle order by newid()order by 一般是根据某一字段排序,newid()的返回值 是uniqueidentifier ,order by newid()随机选取记录是如何进行的newid()在扫描每条记录的时... 阅读全文
posted @ 2014-07-06 17:52 Coding_Yong 阅读(560) 评论(0) 推荐(0) 编辑
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 25 下一页