All our applications have Debug = "False" in the web.config and Release DLL files.
We have a number of applications that now use ScriptManagers to implement .net Ajax. ScriptManager has a ScriptMode that is configured for Release and Debug modes. By default, this parameter is set to "Auto", and if it is set to "Auto", its value is set based on the parameter "Deployment - Retail =" True "in Machine.Config.
I have never set this flag on any of our Live Production servers and therefore do not want to just do it!
My questions:
- Does anyone have any info on setting this flag?
- Is this the only way to globally install ScriptManagers ScriptMode for release? I would happily just install it in Web.Config instead.
- What problems can arise if I set this flag on a production server?
source
share