Deploy Web Applicationhttp://forums.asp.net/t/1798802.aspx/1?Deploy+Web+ApplicationWed, 02 May 2012 19:43:02 -040017988024959697http://forums.asp.net/p/1798802/4959697.aspx/1?Deploy+Web+ApplicationDeploy Web Application <p>Is there any way i can deploy asp web application on multiple systems or multiple iis enabled windows xp systems.</p> <p></p> <p>since the application is running very slow when used by around 80 &#43; people...</p> <p></p> <p></p> <p></p> 2012-05-01T10:59:11-04:004959839http://forums.asp.net/p/1798802/4959839.aspx/1?Re+Deploy+Web+ApplicationRe: Deploy Web Application <p>You might be able to do something with Microsoft's free load distributor, I forget the name but what you can do is you place several web servers in a pool and the software sends the requests in a round robin format.</p> 2012-05-01T12:22:40-04:004959842http://forums.asp.net/p/1798802/4959842.aspx/1?Re+Deploy+Web+ApplicationRe: Deploy Web Application <p>Its MS Application Request Routing: <a href="http://www.iis.net/download/ApplicationRequestRouting"> http://www.iis.net/download/ApplicationRequestRouting</a></p> 2012-05-01T12:23:39-04:004959904http://forums.asp.net/p/1798802/4959904.aspx/1?Re+Deploy+Web+ApplicationRe: Deploy Web Application <p>could you please explain how do i use the application</p> <p>fyi</p> <p>i am using the default iis services available on the windows xp system SP3</p> <p>and i want to deploy the application in such a way that when the system is overloaded the application redirect the users to different server but when updating any information on the database it should get replicated on both servers i am really not good at this as this is the first time i have created a web application.. Please help</p> 2012-05-01T13:00:06-04:004959986http://forums.asp.net/p/1798802/4959986.aspx/1?Re+Deploy+Web+ApplicationRe: Deploy Web Application <p>You probably would get better guidance on this subject over at the IIS forums since we don't cover advanced IIS configuration on the asp.net forums. They do have videos out there that teach how to use it and configure it.</p> 2012-05-01T14:00:58-04:004960235http://forums.asp.net/p/1798802/4960235.aspx/1?Re+Deploy+Web+ApplicationRe: Deploy Web Application <p>Have you determined where your bottlenecks are?&nbsp; If the slowness comes from the database layer, adding multiple web servers will not help you.</p> 2012-05-01T16:14:25-04:004960251http://forums.asp.net/p/1798802/4960251.aspx/1?Re+Deploy+Web+ApplicationRe: Deploy Web Application <p>I'm with Terri on this one. 80 or so users shouldn't cause the site to drag that much. What do your queries look like? Post them here if you can.</p> 2012-05-01T16:25:59-04:004960839http://forums.asp.net/p/1798802/4960839.aspx/1?Re+Deploy+Web+ApplicationRe: Deploy Web Application <p>i'm sure its the database cause every combobox on the page is connected to a datasource and on a page there are around 10&#43; and how much of of difference will it make if the vb code is written on vb file rather than using vb script on the aspx page&nbsp;</p> 2012-05-02T05:14:47-04:004961516http://forums.asp.net/p/1798802/4961516.aspx/1?Re+Deploy+Web+ApplicationRe: Deploy Web Application <p>Are you using AJAX? If so, that can cause web applications to suffer if the viewstate gets too large. The visual advantage of the screen not flickering between postbacks don't outweigh the increased loading times.</p> 2012-05-02T10:28:19-04:004962357http://forums.asp.net/p/1798802/4962357.aspx/1?Re+Deploy+Web+ApplicationRe: Deploy Web Application <p>the usage of ajax toolkit is very high ....</p> 2012-05-02T16:38:15-04:004962545http://forums.asp.net/p/1798802/4962545.aspx/1?Re+Deploy+Web+ApplicationRe: Deploy Web Application <p>To see the size of your viewstate, fire up Fiddler which can diagnose the communication between server and browser. Check your viewstate. If its larger than 100K, that is going to cause excessive drag in some instances. The key thing to remember is this problem will not present itself in development as there is no lag time between requests. However, you will see this behavior on production. One application I was working with (not my development) actually had a viewstate that was over 1 megabyte. I would hit my dropdown list, wait 15-20 seconds and then it would finally respond. You might want to use JQuery instead of AJAX with that many controls counting on the partial postback.</p> 2012-05-02T19:43:02-04:00