General .NETFor general discussion of MICROSOFT .NET topics that don't fall within any of the other .NET forum subcategories or .NET language forums. If your question is specific to a language (C# or Visual Basic) or type of application (Windows Forms or ASP.Net) try an applicable forum category.
** PLEASE BE SPECIFIC WITH YOUR QUESTION **
When posting here, provide details regarding the Microsoft .NET language you are using and/or what type of application (Windows/Web Forms, etc) you are working in, if applicable to the question. This will help others answer the question without having to ask.
Welcome to the p2p.wrox.com Forums.
You are currently viewing the General .NET section of the Wrox Programmer to Programmer discussions. This is a community of tens of thousands of software programmers and website developers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining today you can post your own programming questions, respond to other developers’ questions, and eliminate the ads that are displayed to guests. Registration is fast, simple and absolutely free .
I have conifgured network load balancing basically with two hosts and hosted a simple web application on them. The load balancing is working fine (distributing requests to the hosts) . But, I have a problem which I have described as follows.
Let us assume there are two servers A and B
I have a simple ASP.NET application which takes two inputs. I have two buttons, Next and Save. When I click on Next button, I add the values to the Viewstate and when I click on Save, the values are saved to the database.
1) Accessing server A, specify inputs, click Next button.
2) specify inputs, remove network cable from server A
3) Click Next,
Now, what is observed is that it takes some time and the request is forwarded to Server B. But, whatever data is posted is not available. Is there any possible way to overcome this?