For ASP.Net application deployment what type of information (if any) are you storing in the machine.config?
If you\'re not using it, how are you managing environmen
If you load balance your servers, you ABSOLUTELY have to make sure the machine key is the same on all the servers. Viewstate is supposed to be server agnostic, but it is not, so you'll get viewstate corruption errors if the machine key is not the same across servers.
From: http://www.c-sharpcorner.com/UploadFile/gopenath/Page107182007032219AM/Page1.aspx
PS sure you can enableViewStateMAC="false", but don't.