Friday, February 19, 2010

Trace.axd

One thing I am going to remember is Trace with ASP.NET... It is so powerfull to watch Application, Session and ViewState.

<trace enabled="true" requestLimit="40" localOnly="false" />

Very important when troubleshooting:

http://msdn.microsoft.com/en-us/library/y13fw6we%28VS.71%29.aspx

Thursday, February 04, 2010

Kill Task in XP

c:\>taskkill /pid 3252 /F

Force kill aspnetwp.exe....

Than stop the IIS and then delete temporary files.

How ASP.NET MVC Works Step by Step

How ASP.NET MVC Works Step by Step Introduction to ASP.NET MVC What is ASP.NET MVC? ASP.NET MVC is a web application framework devel...