Posted on April 29, 2008 by Lisa Zhou
This article here has a really good explaination about .Net page cycle, how the different functions are called and their sequences, like preinet, init, pageload and so on.
Also has some explanation about viewstates.
http://www.codeproject.com/KB/aspnet/aspnetviewstatepagecycle.aspx
Filed under: News | Leave a Comment »
Posted on April 22, 2008 by Lisa Zhou
We all know the importance of handelling exceptions properly in an application, but what is the best way?
This article here is really good in explaining the different method, which points to throw and handle the exception and the reasons behind them.
http://www.informit.com/articles/article.aspx?p=102315&seqNum=1
Filed under: .Net | Leave a Comment »
Posted on April 4, 2008 by Lisa Zhou
Redirecting a parent page, this situation would arise if you had an web application and there were iframe pages used in the system.If the user looses their session on one of these iframe pages, the parent page need to be redirected back to the login page.
To do this you can use the javascript command of
parent.location=login.aspx
Depending [...]
Filed under: .Net | Leave a Comment »
Posted on April 2, 2008 by Lisa Zhou
Found a really good article here on how you can code your .net web application better to get better performance.
http://www.codeproject.com/KB/vb/Speed_up__Web_application.aspx
Filed under: .Net | Leave a Comment »
Posted on April 1, 2008 by Lisa Zhou
With the .net auto complete control, there is an attribute enablecache which tells the auto-complete to use caching or not. If this attribute is set to true, typing the same search text within a set number of seconds, instead of retrieving the data again from the database, the previous search results will be used.
Although caching [...]
Filed under: Ajax.Net, autocomplete | 3 Comments »