Handling session error on multiple frontend servers in ASP.NET 4.0

Perform the following steps to handle Session for Multiple Front End Servers 1) Add the tag under tag in the web.config file of all the front end servers For Example: <sessionState mode=”StateServer” timeout=”20″ stateConnectionString=”tcpip=server:port” /> Refer the following link for more information: http://msdn.microsoft.com/en-us/library/h6bb9cz9(v=vs.100).aspx 2) Add the tag under tag in…

Continue reading