In the internet i have used several type but i have not success that so please help in ....
how to reduce page load time in asp.net ..
how to reduce page load time in asp.net
Ask by Milin Narkhede
Updated 07 Mar 2015
•Caching is key to performance, consider your caching strategy very carefully.
•Disable viewstate if possible.
•Set <compilation debug=”false"> in web.config when deploying the app.
•Consider CDN's or subdomains for graphics and other static content.
•Place javascript at the bottom of the page, CSS at the top.
•Consider CSS sprites for icons and other "small" graphics.