ASP.Net ScriptManager globally setting ScriptMode in Machine.Config - Stack Overflow most recent 30 from stackoverflow.com2010-03-20T11:07:25Zhttp://stackoverflow.com/feeds/question/1589108http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1589108/asp-net-scriptmanager-globally-setting-scriptmode-in-machine-config3ASP.Net ScriptManager globally setting ScriptMode in Machine.ConfigRobin Dayhttp://stackoverflow.com/users/406552009-10-19T14:47:41Z2009-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#15920281Answer by cxfx for ASP.Net ScriptManager globally setting ScriptMode in Machine.Configcxfxhttp://stackoverflow.com/users/381262009-10-20T01:33:03Z2009-10-20T01:33:03Z<p>Setting <strong><deployment retail="true" /></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><compilation debug="true"/> 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>