This topic has not yet been rated - Rate this topic

ScriptManager.EnableScriptLocalization Property

Gets or sets a value that indicates whether the ScriptManager control renders localized versions of script files.

Namespace:  System.Web.UI
Assembly:  System.Web.Extensions (in System.Web.Extensions.dll)
public bool EnableScriptLocalization { get; set; }
<asp:ScriptManager EnableScriptLocalization="True|False" />

Property Value

Type: System.Boolean
true if localized script files will be rendered; otherwise, false. The default value is true.

When the EnableScriptLocalization property is set to true, the ScriptManager object will retrieve script files for the current culture if they exist. For example, a page might specify a script file that is named CustomScript.js. If the culture is set to fr-CA, the ScriptManager object will try to retrieve a script file that is named CustomScript.fr-CA.js.

NoteNote

To prevent a script file from being rendered two times, the EnableScriptLocalization property must not be modified during an asynchronous postback.

.NET Framework

Supported in: 4.5, 4, 3.5

Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.