I have the following queries regarding the loading time of asp.net page. Anyone can help. What are the possibilities of asp.net page consuming more loading time?. How to reduce the loading time of asp.net web page?
Images used
Reduce number of scripts and stylesheets
Enable HTTP Compression
Compilation should be on release mode ie, remove <compilation debug="true"/>
from web.config
Check the Viewstate, big viewstates slow downs the page.
If you are consuming the database, try database level paging, if the number of records are higher. Consider fetching only the required fields.