Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
这是在 ASP.NET 应用程序中进行压力测试的免费工具。
https://learn.microsoft.com/en-us/archive/blogs/alikl/stress-test-asp-net-web-application-with-free-wcat-tool
另一个称为 asp。网络性能工程,它将告诉我们如何强调应用程序。
https://learn.microsoft.com/en-us/archive/blogs/alikl/asp-net-performance-engineering-stress-test-your-architecture-design-and-code
另外浏览以下帖子:
网站进行压力测试的最佳方法
对 我在转移到生产环境之前的经验请参考以下内容。
在 web.config 中设置 debug=false
在 web.config 中设置跟踪启用=false
始终使用代码的预编译版本。
将您的项目编译为发布模式。
如果您使用的是 ASP.NET 2.0 或更高版本,请发布您的代码
尽可能多地用户缓存api。
减少 html kb。
从 asp.net html 代码中删除空格。
使用样式表作为外部 .css 文件
如果可能,请使用 IIS 压缩。
将 javascript 文件放入 .js 文件中
使用 Server.Transfer 而不是 Response.redirect
如果可能,请使用 Inproc 会话状态。
有效地使用Viewstate - 使用controlstate代替viewstate,这是asp.net 2.0中的新功能
避免给控件起大名称,它会增加您的 html kb。
使用 Div 而不是表格,它会减小你的大小。
根据您的要求进行 IIS 性能调整
这是一个很好的链接,它教我们在生产环境中部署的好方法。
http://www.vbdotnetheaven.com/UploadFile/dsdaf/111222006014732AM/1. ASPX
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
Apache JMeter (http://jmeter.apache.org/) 是一款出色的 Web 压力测试工具应用程序。 它可以与任何 Web 服务器一起使用,而不仅仅是 Apache。
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.
Visual Studio 2010 提供了一些出色的测试自动化工具,也用于对 Web 应用程序进行负载测试。
Visual Studio 2010 provides some fantastic Test Automation tools and also for Load Testing the web applications.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(3)
这是在 ASP.NET 应用程序中进行压力测试的免费工具。
https://learn.microsoft.com/en-us/archive/blogs/alikl/stress-test-asp-net-web-application-with-free-wcat-tool
另一个称为 asp。网络性能工程,它将告诉我们如何强调应用程序。
https://learn.microsoft.com/en-us/archive/blogs/alikl/asp-net-performance-engineering-stress-test-your-architecture-design-and-code
另外浏览以下帖子:
网站进行压力测试的最佳方法
对 我在转移到生产环境之前的经验请参考以下内容。
在 web.config 中设置 debug=false
在 web.config 中设置跟踪启用=false
始终使用代码的预编译版本。
将您的项目编译为发布模式。
如果您使用的是 ASP.NET 2.0 或更高版本,请发布您的代码
尽可能多地用户缓存api。
减少 html kb。
从 asp.net html 代码中删除空格。
使用样式表作为外部 .css 文件
如果可能,请使用 IIS 压缩。
将 javascript 文件放入 .js 文件中
使用 Server.Transfer 而不是 Response.redirect
如果可能,请使用 Inproc 会话状态。
有效地使用Viewstate - 使用controlstate代替viewstate,这是asp.net 2.0中的新功能
避免给控件起大名称,它会增加您的 html kb。
使用 Div 而不是表格,它会减小你的大小。
根据您的要求进行 IIS 性能调整
这是一个很好的链接,它教我们在生产环境中部署的好方法。
http://www.vbdotnetheaven.com/UploadFile/dsdaf/111222006014732AM/1. ASPX
Here is the free tool for the stress testing in asp.net application.
https://learn.microsoft.com/en-us/archive/blogs/alikl/stress-test-asp-net-web-application-with-free-wcat-tool
Another is called asp.net performance engineering which will tell how we can stress application.
https://learn.microsoft.com/en-us/archive/blogs/alikl/asp-net-performance-engineering-stress-test-your-architecture-design-and-code
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
Apache JMeter (http://jmeter.apache.org/) 是一款出色的 Web 压力测试工具应用程序。 它可以与任何 Web 服务器一起使用,而不仅仅是 Apache。
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.
Visual Studio 2010 提供了一些出色的测试自动化工具,也用于对 Web 应用程序进行负载测试。
Visual Studio 2010 provides some fantastic Test Automation tools and also for Load Testing the web applications.