How to override the machine.config ?
ASP.NET
5
Posts
3
Posters
0
Views
1
Watching
-
whatever the setting you want to override define it in your applcations web.config file.
Dinesh Sharma
-
whatever the setting you want to override define it in your applcations web.config file.
Dinesh Sharma
-
The following code will replace the machine.config settings for session state
<sessionState timeout="525600" cookieless="UseCookies" mode="InProc"/>
Dinesh Sharma