ScriptManager.EnableScriptLocalization Property

Definition

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

public:
 property bool EnableScriptLocalization { bool get(); void set(bool value); };
public bool EnableScriptLocalization { get; set; }
member this.EnableScriptLocalization : bool with get, set
Public Property EnableScriptLocalization As Boolean

Property Value

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

Remarks

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.

Note

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

Applies to

See also