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.

public:
 property System::Web::UI::AjaxFrameworkMode AjaxFrameworkMode { System::Web::UI::AjaxFrameworkMode get(); void set(System::Web::UI::AjaxFrameworkMode value); };
public System.Web.UI.AjaxFrameworkMode AjaxFrameworkMode { get; set; }
member this.AjaxFrameworkMode : System.Web.UI.AjaxFrameworkMode with get, set
Public Property AjaxFrameworkMode As AjaxFrameworkMode

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

See also