How to simulate slow page load in ASP.NET?
|
|
Fiddler can be used to simulate modem (or other slow speed connections) Related Question: http://stackoverflow.com/questions/3173318/is-it-possible-to-slow-down-iis/3173334#3173334 |
|||
|
|
|
if your application is x-browser you could use a firefox add-on, like Firefox Throttle https://addons.mozilla.org/en-US/firefox/addon/5917/ or maybe just use firefox for testing if your web application targets a specific browser Update (9/15/2012): This plugin is no longer active... "This add-on has been disabled by an administrator." |
||||
|
|
|
Bandwidth or Latency? For bandwidth, you can use the Bandwidth Throttling module for IIS6 or IIS7. Not sure how to simulate high Latency though. |
|||
|
|
|
The simplest way is to add in the page load event handler
|
|||||||||
|
|
I would suggest looking at Visual Studio's performance testing capabilities. Here's a quick guide: |
|||
|
|
|
Are you trying to determine how your site or app behaves under high load? If so I can recommend jMeter. The advantage of this approach is that you can create different groups of threads which can approximate the behaviour of real users hitting your app. |
|||
|
|
