文章分类 - ASP.NET
摘要:http://www.uberasp.net/forum.aspx?mode=thread&TopicID=448&page=3
阅读全文
摘要:http://codebetter.com/blogs/jeremy.miller/archive/2006/02/01/137457.aspx
阅读全文
摘要:http://msdn.microsoft.com/msdnmag/issues/05/10/WickedCode/
阅读全文
摘要:Please Read: http://objectsharp.com/Blogs/bruce/articles/1571.aspx
阅读全文
摘要:http://www.cnblogs.com/cwbboy/archive/2005/10/21/258995.html
阅读全文
摘要:http://www.codeproject.com/aspnet/ASPNET_11_Compilation.asphttp://www.codeproject.com/aspnet/ASPNET_11_Compilation_E.asp
阅读全文
摘要:原文地址: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...
阅读全文
摘要:.NET 1.1中预编译ASP.NET页面实现原理浅析 MS在发布ASP.NET时的一大功能特性是,与ASP和PHP等脚本语言不同,ASP.NET实际上是一种编译型的快速网页开发环境。这使得ASP.NET在具有开发和修改的简便性的同时,不会负担效率方面的损失。实现上ASP.NET与JSP的思路类似,引擎在第一次使用一个页面之前,会将之编译成一个类,自动生成Assembly并载入执行。 而通过《在W...
阅读全文
摘要:http://channel9.msdn.com/wiki/default.aspx/PerformanceWiki.HowToTuneASPNET
阅读全文
摘要:http://www.eggheadcafe.com/articles/20050613.asp
阅读全文
摘要:Please read : http://msdn.microsoft.com/msdnmag/issues/05/01/ASPNETPerformance/default.aspx
阅读全文
摘要: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 ...
阅读全文
摘要:深入剖析IIS 6.0(上) 深入剖析IIS 6.0(下)下载Word文档:深入剖析IIS6.rar
阅读全文
摘要:原文链接:ViewState: All You Wanted to Know作者:Paul Wilson翻译:木野狐 ViewState 不是什么? 1. ViewState 不是用来恢复回发的控件的值。这个是通过匹配 form 中该控件的变量名而自动完成的。这个只对 Load 事件加载之前创建的控件有效。2. ViewState 不会自动重新创建任何通过代码动态创建的控件。3. 不是用来保存用户...
阅读全文
摘要:原文链接:Page Events: Order and PostBack作者:Paul Wilson翻译:木野狐 初始化(Initialization) 页面被请求时,第一个被执行的总是构造函数(constructor). 你可以在这里初始化很多自定义属性或对象。不过这里有一些限制,因为 page 还没有被完全初始化。特别地,你必须使用 HttpContext.Current 来访问 QueryS...
阅读全文
摘要: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...
阅读全文
摘要: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 ...
阅读全文
摘要: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...
阅读全文
摘要:问题:有的网站的相关内容必须要在登录后才可以查看,其登录信息保存在session变量之中。这样,使用asphttp等组件就难以正确得到所要的信息。解决:使用asp.net中的httprequest和httpresponse来实现。要点:1。 通过附加一个cookiecontainer到httprequest对象中,可以得到登录后返回的代表SESSION ID的COOKIE。 见Login方法2。 将此COOKIE包含在一个cookiecontainer中并附加到另一个HTTPREQUEST请求中,则可以实现SESSION的还原。见getPage方法源程序如下:getHttpInfo.aspx:
阅读全文
摘要: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...
阅读全文