Thanks for taking time to read my questions.
I am having some basic doubts about the load balanced servers.
I assumes that, One applicatgion is hosted on the two servers, when one server is heavily loaded the load balancer is switching the responsibilites of handling the particular request to other server.
This is how I assumed about the load balancer.
Which is managing and monitoring the load and do all the transfers of requests.
How does the static variables are taken place for processing. For ex:- I have a variable called as 'totalNumberOfClick'. Which is being incremented whenever we hits the page.
If a GET request is handled by a server, and its POST method also should be managed by that server.Right? For Ex:- A user is requesting a page for editing, the Asp.Net runtime will create a set of viewstate (which has controlID and its values) and is mainatained in the server and client side. When we hit the post button the server is validating the view state and allowing it to enter in to server and doing other processing.
If the post is getting transferred to other server, how the Runtime allow it to do the processing.