Reputation: 13006
We are trying to remove references in the headers to ASP.Net
In our .Net MVC project, the web config contains:
<sessionState mode="InProc" customProvider="DefaultSessionProvider" cookieName="newCookie">
In the host headers when viewing through the web server (IIS) I see:
ASP.NET_SessionId=....
newCookie=.....
However when I test locally, I don't see the ASP.NET_SessionId reference.
I also renamed the forms authentication cookie name to something else.
What am I missing?
Upvotes: 1
Views: 620