ASP.Net Speed your page response by using the Overrides
By [)ia6l0 iii
Use the Override versions of the page methods instead of thedefault page methods. This would ensure that the .Net runtime does not have to invoke delegates.
Use the Override versions of the page methods instead of the default page methods.
This would ensure that the .Net runtime does not have to invoke delegates.
Note
that this page methods are hooked through the AutoEventWireup attribute. You need to turn it off.
Related FAQs
You can check the contenttype of the request, and figure out if the request is an JSon request
You can use the ScriptManager to find if a postback is for a partial rendering of a page. The ScriptManager provides us the IsInAsyncPostBack property to determine this.
You can check the contenttype of the request, and figure out if the request is an Ajax request
You might use more than one rule through CSS on a single element. In such cases, you might as well like to define the precedence order on the rules.
ASP.Net Speed your page response by using the Overrides (860 Views)