Прочитај на енглеском Уреди

Делите путем


ScriptManager.AjaxFrameworkMode Property

Definition

Gets or sets a value that specifies how client scripts of the Microsoft Ajax client library will be included on the client.

C#
public System.Web.UI.AjaxFrameworkMode AjaxFrameworkMode { get; set; }

Property Value

An AjaxFrameworkMode enumeration value.

Examples

The following example shows how to set the AjaxFrameworkMode property to Explicit in order to indicate that scripts can be explicitly specified.

<asp:ScriptManager ID="sm1" AjaxFrameworkMode="Explicit" runat="server">   
<Scripts>   
    <asp:ScriptReference Name="MicrosoftAjaxCore.js" />   
    <asp:ScriptReference Name="MicrosoftAjaxComponentModel.js" />    
    <asp:ScriptReference Name="MicrosoftAjaxSerialization.js" />   
    <asp:ScriptReference Name="MicrosoftAjaxNetwork.js" />       
</Scripts>   
</asp:ScriptManager>  

Remarks

Use the AjaxFrameworkMode property to enable all Microsoft Ajax script files, to disable all Microsoft Ajax script files, or to explicitly include individual script files.

Applies to

Производ Верзије
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also