Good practices in the life of software development
Browse by Tags
All Tags »
ASP.NET (RSS)
-
There are situations where you don’t want user to click on a button twice too fast or on a checkbox when the server is still processing. One quick trick is to use “ this .Button1.Attributes.Add( "onclick" , "this.disabled=true;" ); ” to disable the button Read More...
|
-
I mentioned developing an ASP.NET website in the first blog . ASP.NET is a sophisticated architecture that often confuses developers, especially which event fires first could be difficult to expect. You should understand ASP.NET Page Life Cycle before Read More...
|