Browse by Tags
All Tags »
Controls »
ASP.NET (RSS)
I wrote simple code which is showing order of execution of events and protected methods related to the page life cycle. I simply added output messages into the each event and protected method of Page and Control (UserControl which is located on that page).
Read More...
Most of programmers who are dealing with ASP.NET know how to access files on the server. The common way how to do this is to use HttpContext.Current.Server.MapPath static method and get physical path of the file by passing virtual. But what if we need
Read More...
During creating of Custom Controls sometimes programmers are dealing with implementation of code which should run only in Design Time mode. And the main question is, how to determine in ASP.NET whether your code is running in Design Time mode or not?
Read More...
If you are planning to create WebControlLibrary you will certainly need to debug the code not only in normal runtime but also in Design Time mode. In case of error in a code in design time usually you see rectangle with an exception message. But of course
Read More...