Reputation: 11
We don't keep and data for the pages on the server (we're transitioning to pure html/js), but we do still have asp.net masterpages and runat=sever for content of the pages. We do have multiple app servers enabled for load balance, so on the application settings should we set ARR Affinity to on? For some rare cases we see an 'Aw Snap' page on chrome because the page doesn't load correctly. Maybe 1/20 times. I wonder if that is the case.
Upvotes: 0
Views: 630
Reputation: 8491
Azure Web App should ARR Affinity be on for ASP.NET webforms?
If your webform application is stateless, you don't need to turn on ARR Affinity. Stateless means that you need to store the application/session state in a distribute place.
For some rare cases we see an 'Aw Snap' page on chrome because the page doesn't load correctly.
The Aw Snap error is dedicated to chrome. It may not related to your Azure Web App Server. To fix the issue, you could try the steps provided by google.
Fix "Aw, Snap!" page crashes and other page loading errors
Upvotes: 1