Why we do methods to be static for Post Cache substitution
Posted on August 28th , 2009 by Admin
|
|
ASP.NET able to call this method even when there no instance of
page class available. Whenever page is served from the cache, the page object is not
created. ASP.NET skips the page life cycle when the page is coming from cache,
which means it would not create any control objects or raise any control events. If your dynamic content depends on the values of other controls, you all need to use a different technique, because these control objects won't b |
| e available to your callback.
|
|
|