I am facing very differnt problem with my website(IIS7), running with asp.net 2.0 and in classic mode.
This website is working fine when usage is very less. When many people try the website, it is not responding.. not even connects to that website, status of the browser says waiting for website Url.
In such cases if we reset IIS or kill the w3wp.exe, then it is working fine. Is there any way to solve this problem. May be any of the IIS settings to look at?
If your website is data driven, i'd look at the code and see that you are closing all open connections once db access has occurred as the server would keep a link open to the db otherwise.
Also how many users are you talking about when you say a large amount, if in the hundred+ at a time, maybe you may require some king of load balancing solution.
Hope this helps
If this fixed your issue then please 'Mark as Answer'
m_ramu1310
0 Points
2 Posts
Website is not responsing
Oct 25, 2011 08:39 PM|LINK
Hi
I am facing very differnt problem with my website(IIS7), running with asp.net 2.0 and in classic mode.
This website is working fine when usage is very less. When many people try the website, it is not responding.. not even connects to that website, status of the browser says waiting for website Url.
In such cases if we reset IIS or kill the w3wp.exe, then it is working fine. Is there any way to solve this problem. May be any of the IIS settings to look at?
Thanks in Advance.
Thanks and Regards
Ramu
ammd
Participant
1347 Points
256 Posts
Re: Website is not responsing
Oct 25, 2011 11:15 PM|LINK
If your website is data driven, i'd look at the code and see that you are closing all open connections once db access has occurred as the server would keep a link open to the db otherwise.
Also how many users are you talking about when you say a large amount, if in the hundred+ at a time, maybe you may require some king of load balancing solution.
Hope this helps