Reputation: 331
I just want some tricks for increase ASP.Net application. This question is a little wide, but if you can give me some general tips I will appreciate.
Upvotes: 0
Views: 199
Reputation: 6903
You could try:
Optimising your database:
* redesign/normalise your schema
* index tables
* revisit your SQL/Stored Proc code and amend for speed if you can.
* Check execution plans for big datasets and indeed dodgy SQL code ;)
Web App:
Use Tracing to figure out where the bottlenecks are and then:
* Cache the output, controls and data wherever possible.
* Use IIS to compress the html output.
* Compress or disable viewstate entirely for webforms. Or persist it in a db.
Misc
* Load external files from CDNs e.g. jquery
* Run a tool to strip whitespace from the html of the response.
Upvotes: 1
Reputation: 63972
Upvotes: 0
Reputation: 48034
I would suggest that you don't go into premature optimization.
Figure out what the slow parts are, then fix them.
Upvotes: 2
Reputation: 50728
Read this booK: http://www.amazon.com/Ultra-Fast-ASP-NET-Build-Ultra-Scalable-Server/dp/1430223839/ref=sr_1_1?ie=UTF8&s=books&qid=1289574343&sr=8-1
Upvotes: 3