Turn off Session state through web.config
By [)ia6l0 iii
You can turn off session state of an asp.net application from web.config file
Use the remove property of the HttpModule tag to remove the session state
like,
<httpModules><remove name=""Session"" />'</httpModules>
Turn off Session state through web.config (369 Views)