what are different ways that we can do some optimum level of stress testing for asp.net application before moving it to the production environment ?
3 Answers
Here is the free tool for the stress testing in asp.net application.
Another is called asp.net performance engineering which will tell how we can stress application.
Also go through the following post:
Best way to stress test a website
From my experience before moving to the production environment please take of following things.
set debug=false into the web.config
set trace enabled=false into the web.config
Always use precompiled version of your code.
Compile your project into the release mode.
Publish your code if you are using asp.net 2.0 or higher version
User caching api as much as possible.
Decrease your html kb.
remove blank spaces from the asp.net html code.
Use stylesheet as external .css file
USE IIS Compression if poosible.
Put your javascript file in .js files
Use Server.Transfer instead of Response.redirect
Use Inproc Session State if possible.
Use Viewstate efficiently- Use controlstate instead of viewstate which is newer feature in asp.net 2.0
Avoid giving big name to controls it will increase your html kb.
Use Div instead of tables it will decrease your size.
Do IIS Performance tuning as per your requirement
Here is the good link that teaches us good way of deployment in production environment.
http://www.vbdotnetheaven.com/UploadFile/dsdaf/111222006014732AM/1.aspx

- 1,093
- 12
- 22

- 13,653
- 19
- 72
- 94
-
Thanks for this wonderful checklist. I have pretty much addressed all the points mentioned by you. for viewstate we use http://www.eggheadcafe.com/articles/20040613.asp which makes our viewstate completely off-page delivering a lighter html. I am not sure what you mean by "6) User Caching API" and this is the only thing which i have not taken care of as well. – Vikram May 07 '09 at 20:03
-
1ASP.NET Offers a cache api. For more details about cache api. You can find lots of stuff in asp.net.Here are the some good links. http://www.ondotnet.com/pub/a/dotnet/2002/12/30/cachingaspnet.html http://www.eggheadcafe.com/articles/20060407.asp http://authors.aspalliance.com/aspxtreme/webapps/aspcachingfeatures.aspx – Jalpesh Vadgama May 07 '09 at 20:17
-
`Use Server.Transfer instead of Response.redirect` huh – Alex from Jitbit May 29 '20 at 15:24
Apache JMeter (http://jmeter.apache.org/) is an excellent tool for stress-testing web applications. It can be used with any web server, not just Apache.

- 33,980
- 5
- 71
- 116

- 5,534
- 7
- 34
- 34
Visual Studio 2010 provides some fantastic Test Automation tools and also for Load Testing the web applications.

- 6,865
- 9
- 50
- 61