上一页 1 2 3 4 5 6 7 8 9 ··· 27 下一页
摘要: In order to omit the byte order mark (BOM), your stream must use a custom instance of UTF8Encoding instead of the default System.Text.Encoding.UTF8: 1.Call the UTF8Encoding constructor with False fo... 阅读全文
posted @ 2014-04-13 22:25 code_flyer 阅读(3567) 评论(0) 推荐(1) 编辑
摘要: 1.Output Caching With output caching, the final rendered HTML of the page is cached. When the same page is requested again, the control objects are not created, the page life cycle doesn’t start, an... 阅读全文
posted @ 2014-04-13 20:23 code_flyer 阅读(499) 评论(0) 推荐(0) 编辑
摘要: 原文:http://www.cnblogs.com/sanshi/archive/2012/06/22/2558476.html 若是持久Cookie,Cookie的有效期Expiration属性有当前时间加上web.config中timeout的时间,每次请求页面时,在验证身份过程中,会判断是否过了有效期的一半,要是的话更新一次cookie的有效期。 对于持久Cookie才有过期时间的说法,... 阅读全文
posted @ 2014-04-13 07:42 code_flyer 阅读(729) 评论(0) 推荐(0) 编辑
摘要: 1.下面的例子在web.config文件中配置网站使用asp.net forms 身份认证方式: ... Forms 认证设置: 属性 描述 name The name of the HTTP cookie... 阅读全文
posted @ 2014-04-13 07:36 code_flyer 阅读(743) 评论(0) 推荐(0) 编辑
摘要: //保留两位小数 //功能:将浮点数四舍五入,取小数点后2位 function toDecimal(x) { var f = parseFloat(x); if (isNaN(f)) { return; } f = Math... 阅读全文
posted @ 2014-04-12 17:34 code_flyer 阅读(2096) 评论(0) 推荐(0) 编辑
摘要: 原文:http://www.cnblogs.com/wupeiqi/archive/2013/03/03/2941295.html 工作进程: 在iis中,工作进程(w3wp.exe)运行着asp.net应用程序,管理并响应所有的请求,asp.net所有的功能都运行在工作进程下,当请求到来时,工作进程会生成request和response相关信息。 应用程序池: 应用程序池是工作进程的容器。通常用... 阅读全文
posted @ 2014-04-12 16:48 code_flyer 阅读(807) 评论(0) 推荐(0) 编辑
摘要: 原文:http://www.cnblogs.com/wupeiqi/archive/2013/05/04/3058914.html 这里详细的介绍了各种数据库的各种连接http://www.connectionstrings.com/ 例如:String strConn="Data Source=.;Initial Catalog=数据库的名字;Integrated Security=ture" ... 阅读全文
posted @ 2014-04-12 14:27 code_flyer 阅读(673) 评论(0) 推荐(0) 编辑
摘要: 这里把符合以下条件的对象称为伪数组(ArrayLike) 1,具有length属性 2,按索引方式存储数据 3,不具有数组的push,pop等方法 如 1,function内的arguments 。 2,通过document.forms,Form.elements,Select.options,document.getElementsByName() ,doc... 阅读全文
posted @ 2014-04-11 22:20 code_flyer 阅读(367) 评论(0) 推荐(0) 编辑
摘要: mouseenter事件在鼠标进入某个元素,或第一次进入这个元素的某个子元素时触发。一旦触发后,在mouseleave之前,鼠标在这个元素的子元素上触发mouseenter事件都不会触发这个元素的mouseenter事件。即:一旦进入,在子元素间的mouseenter不算是在本元素上的mouseenter。 而mouseover事件是必然冒泡的,一旦子元素mouseover了,本元素... 阅读全文
posted @ 2014-04-11 21:47 code_flyer 阅读(535) 评论(0) 推荐(0) 编辑
摘要: 原文:http://www.cnblogs.com/liuhaorain/archive/2012/02/06/2340409.html 1. 什么是ADO.NET? 简单的讲,ADO.NET是一组允许.NET开发人员使用标准的,结构化的,甚至无连接的方式与数据交互的技术。对于ADO.NET来说,可以处理数据源是多样的。可以是应用程序唯一使用的创建在内存中数据,也可以是与应用程序分离,存储在存储... 阅读全文
posted @ 2014-04-11 13:56 code_flyer 阅读(556) 评论(0) 推荐(1) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 27 下一页