Monitoring as.net performance in Windows 7 using perfmon.exe
http://wiki.asp.net/page.aspx/31/performance/
Checklist: ASP.NET Performance
http://msdn.microsoft.com/en-us/library/ff647706.aspx
50 Tips to Boost ASP.NET Performance - Part I
http://www.aspnet101.com/2010/03/50-tips-to-boost-asp-net-performance-part-i/
Tuesday, December 14, 2010
Friday, December 10, 2010
Make ASP.NET project compile/load time faster
Add following settings into compilation section in web.config file:
batch="false" optimizeCompilations="true" tempDirectory="g:\"
tempDirectory is for the RAM drive
Install RAM drive
Slash your ASP.NET compile/load time without any hard work
batch="false" optimizeCompilations="true" tempDirectory="g:\"
tempDirectory is for the RAM drive
<compilation debug="true" batch="false" optimizeCompilations="true" tempDirectory="g:\">
Install RAM drive
Slash your ASP.NET compile/load time without any hard work
Wednesday, December 8, 2010
WPF/Silverlight and HTML 5
WPF is dead, html 5 is the future

http://www.cincomsmalltalk.com/userblogs/runarj/blogView?showComments=true&entry=3366522423
http://www.cincomsmalltalk.com/userblogs/runarj/blogView?showComments=true&entry=3366522423
Monday, December 6, 2010
Tuesday, November 30, 2010
How to find the control caused postback
http://ryanfarley.com/blog/archive/2005/03/11/1886.aspx
http://www.aspdotnetfaq.com/Faq/How-to-determine-which-Control-caused-PostBack-on-ASP-NET-page.aspx
http://www.aspdotnetfaq.com/Faq/How-to-determine-which-Control-caused-PostBack-on-ASP-NET-page.aspx
Subscribe to:
Posts (Atom)