ASP.Net ScriptManager globally setting ScriptMode in Machine.Config - Stack Overflow most recent 30 from stackoverflow.com 2010-03-20T11:07:25Z http://stackoverflow.com/feeds/question/1589108 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1589108/asp-net-scriptmanager-globally-setting-scriptmode-in-machine-config 3 ASP.Net ScriptManager globally setting ScriptMode in Machine.Config Robin Day http://stackoverflow.com/users/40655 2009-10-19T14:47:41Z 2009-10-20T01:33:03Z <p>All of our applications have Debug="False" in the web.config and Release DLL's.</p> <p>We have a number of Applications that use ScriptManagers now for .net Ajax implementations. The ScriptManager has a ScriptMode that is set for Release and Debug modes. The default for this is Auto and when it is set to Auto it's value is set based on the Deployment - Retail="True" setting in the Machine.Config.</p> <p>I have never set this flag on any of our Live Production servers and therefore don't want to just do it!</p> <p>My questions are:</p> <ul> <li>Does anyone have any information about setting this flag?</li> <li>Is this the only way to globally set the ScriptManagers ScriptMode to Release? I would happily just set it in a Web.Config instead.</li> <li>What problems might I encounter if I set this flag on a production server?</li> </ul> http://stackoverflow.com/questions/1589108/asp-net-scriptmanager-globally-setting-scriptmode-in-machine-config/1592028#1592028 1 Answer by cxfx for ASP.Net ScriptManager globally setting ScriptMode in Machine.Config cxfx http://stackoverflow.com/users/38126 2009-10-20T01:33:03Z 2009-10-20T01:33:03Z <p>Setting <strong>&lt;deployment retail="true" /&gt;</strong> in machine.config is nearly always a good idea for production servers. It'll override certain web.config settings by disallowing:</p> <ul> <li>&lt;compilation debug="true"/&gt; switch</li> <li>page output tracing</li> <li>non-local access to detailed error messages</li> </ul> <p>More good info here on ScottGu's blog: <a href="http://weblogs.asp.net/scottgu/archive/2006/04/11/442448.aspx" rel="nofollow">Don’t run production ASP.NET Applications with debug="true" enabled</a></p> <p>It's unlikely you'll run into any problems by setting this on your production servers, but check in a QA environment first.</p>