ASP too slow to Load
I have done asp.net website using,C#, Ajax,SQLServer2008,javascript,and i hosted in iis(5.0),but my site too slow to load and performances also slow.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Amit ChoudharyPosted Feb 16, 2011, 7:22 AM
You have to work a lot to improve the performance of you website. There's too many techniques available for performance optimization. I'm sharing few of them you can workout on them.
1. Compress the Images, CSS, JavaScript by using compression tools.
2. Optimize your server side code... use IsPostBack property in page_load event to prevent it for every postback execution. but use it wisely.
3. use HTTP Compression in your Global.asax. You'll find articles on it how to compress the HTTP headers etc.
4. User Jquery controls rather then Heavy AJAX controls. (Optional)
5. Use Caching in your website to cache the website page, data. e.g., DataCaching, PageLevel Caching, Fragmented Caching etc. again use it wisely.. it may cause perfomance overhead or in data Mismatch if not used properly. but it'll surely make you happy after applying it.
6. Optimize the IIS to allow HTTP compression.
7. Use StroedProcedure then writing query in your server side code. and you can also optimize the StoredProcedure find the article on it.
Hope now you have lots of things to do.. so just go and try it out..
Thanks
Please mark "Do you like this post?" if it helps you.
Suthish NairPosted Feb 16, 2011, 12:39 PM
Try hosting a simple application with a web page doing some DB operations. Check how much time its take to load.
Might also problem due to Network.