文章分类 -  ASP.NET

摘要:http://www.uberasp.net/forum.aspx?mode=thread&TopicID=448&page=3 阅读全文
posted @ 2006-03-05 19:13 dudu 阅读(764) 评论(0) 推荐(0) 编辑
摘要:http://codebetter.com/blogs/jeremy.miller/archive/2006/02/01/137457.aspx 阅读全文
posted @ 2006-02-06 15:21 dudu 阅读(509) 评论(0) 推荐(0) 编辑
摘要:http://msdn.microsoft.com/msdnmag/issues/05/10/WickedCode/ 阅读全文
posted @ 2005-12-25 20:40 dudu 阅读(685) 评论(0) 推荐(0) 编辑
摘要:Please Read: http://objectsharp.com/Blogs/bruce/articles/1571.aspx 阅读全文
posted @ 2005-10-26 09:41 dudu 阅读(601) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/cwbboy/archive/2005/10/21/258995.html 阅读全文
posted @ 2005-10-21 13:24 dudu 阅读(680) 评论(1) 推荐(0) 编辑
摘要:http://www.codeproject.com/aspnet/ASPNET_11_Compilation.asphttp://www.codeproject.com/aspnet/ASPNET_11_Compilation_E.asp 阅读全文
posted @ 2005-10-13 07:20 dudu 阅读(352) 评论(0) 推荐(0) 编辑
摘要:原文地址:http://www.codeproject.com/useritems/ASPNET_and_IIS_60.asp Unfortunately where to start a testing and tuning process can be driven by who has the biggest issues first. Would it be the Server... 阅读全文
posted @ 2005-10-11 11:54 dudu 阅读(824) 评论(0) 推荐(0) 编辑
摘要:.NET 1.1中预编译ASP.NET页面实现原理浅析 MS在发布ASP.NET时的一大功能特性是,与ASP和PHP等脚本语言不同,ASP.NET实际上是一种编译型的快速网页开发环境。这使得ASP.NET在具有开发和修改的简便性的同时,不会负担效率方面的损失。实现上ASP.NET与JSP的思路类似,引擎在第一次使用一个页面之前,会将之编译成一个类,自动生成Assembly并载入执行。 而通过《在W... 阅读全文
posted @ 2005-10-05 14:26 dudu 阅读(1655) 评论(0) 推荐(0) 编辑
摘要:http://channel9.msdn.com/wiki/default.aspx/PerformanceWiki.HowToTuneASPNET 阅读全文
posted @ 2005-10-04 22:25 dudu 阅读(353) 评论(0) 推荐(0) 编辑
摘要:http://www.eggheadcafe.com/articles/20050613.asp 阅读全文
posted @ 2005-10-04 22:00 dudu 阅读(394) 评论(0) 推荐(0) 编辑
摘要:Please read : http://msdn.microsoft.com/msdnmag/issues/05/01/ASPNETPerformance/default.aspx 阅读全文
posted @ 2005-05-30 17:02 dudu 阅读(672) 评论(0) 推荐(0) 编辑
摘要:The obvious solution to applications throwing System.OutOfMemoryException would of course be to increase the memory. Or to change your code to use less. Still, it is often a bit of a puzzle why these ... 阅读全文
posted @ 2005-04-21 23:37 dudu 阅读(2025) 评论(0) 推荐(0) 编辑
摘要:深入剖析IIS 6.0(上) 深入剖析IIS 6.0(下)下载Word文档:深入剖析IIS6.rar 阅读全文
posted @ 2005-04-17 14:37 dudu 阅读(1275) 评论(0) 推荐(0) 编辑
摘要:原文链接:ViewState: All You Wanted to Know作者:Paul Wilson翻译:木野狐 ViewState 不是什么? 1. ViewState 不是用来恢复回发的控件的值。这个是通过匹配 form 中该控件的变量名而自动完成的。这个只对 Load 事件加载之前创建的控件有效。2. ViewState 不会自动重新创建任何通过代码动态创建的控件。3. 不是用来保存用户... 阅读全文
posted @ 2005-03-15 11:50 dudu 阅读(4843) 评论(2) 推荐(0) 编辑
摘要:原文链接:Page Events: Order and PostBack作者:Paul Wilson翻译:木野狐 初始化(Initialization) 页面被请求时,第一个被执行的总是构造函数(constructor). 你可以在这里初始化很多自定义属性或对象。不过这里有一些限制,因为 page 还没有被完全初始化。特别地,你必须使用 HttpContext.Current 来访问 QueryS... 阅读全文
posted @ 2005-03-15 10:33 dudu 阅读(4211) 评论(1) 推荐(0) 编辑
摘要:Will calling dispose or close have any affect/difference on connection pooling? Either close, or dispose (by virtue of calling close) would make the connection available for Connectionpooling, provid... 阅读全文
posted @ 2005-01-01 21:09 dudu 阅读(1463) 评论(0) 推荐(0) 编辑
摘要:Source: http://www.dotnetjunkies.com/Tutorial/ECCCD6A6-B312-41CB-87A1-10BB5D641D20.dcik Part 2 - Part 1 - Building a Custom Validator Control As promised, this week we will ... 阅读全文
posted @ 2004-12-28 11:44 dudu 阅读(1761) 评论(2) 推荐(0) 编辑
摘要:HTTP content retrieval is an important component for applications these days. Although .NET reduces the need to explicitly retrieve content from the Web through built-in mechanisms in the Web Services... 阅读全文
posted @ 2004-12-26 21:34 dudu 阅读(2878) 评论(0) 推荐(0) 编辑
摘要:问题:有的网站的相关内容必须要在登录后才可以查看,其登录信息保存在session变量之中。这样,使用asphttp等组件就难以正确得到所要的信息。解决:使用asp.net中的httprequest和httpresponse来实现。要点:1。 通过附加一个cookiecontainer到httprequest对象中,可以得到登录后返回的代表SESSION ID的COOKIE。 见Login方法2。 将此COOKIE包含在一个cookiecontainer中并附加到另一个HTTPREQUEST请求中,则可以实现SESSION的还原。见getPage方法源程序如下:getHttpInfo.aspx: 阅读全文
posted @ 2004-12-22 21:08 dudu 阅读(8271) 评论(7) 推荐(0) 编辑
摘要:Preface: I've seen this discussed before, but haven't really found a solution through all my searching, so I'm hoping I'm just missing something. As you may or may not know, if you're creating a serve... 阅读全文
posted @ 2004-07-08 17:18 dudu 阅读(966) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示