Nevron .NET Vision
Nevron.UI.WebForm.Controls Namespace / NWebControl Class / AjaxEnabled Property


In This Topic
    AjaxEnabled Property (NWebControl)
    In This Topic
    Gets / sets a value indicating if the AJAX functionality of the control is enabled. When set to false, the control behaves as a standard postback control. Else, no postback functionality is present and all supported client side events are handled using AJAX.
    Syntax
    'Declaration
     
    
    <System.ComponentModel.CategoryAttribute("AJAX")>
    <System.ComponentModel.DescriptionAttribute("Enables AJAX behavior and disables the postback behavior of the control")>
    <System.ComponentModel.DefaultValueAttribute(False)>
    Public Property AjaxEnabled As System.Boolean
    'Usage
     
    
    Dim instance As NWebControl
    Dim value As System.Boolean
     
    instance.AjaxEnabled = value
     
    value = instance.AjaxEnabled
    [System.ComponentModel.Category("AJAX")]
    [System.ComponentModel.Description("Enables AJAX behavior and disables the postback behavior of the control")]
    [System.ComponentModel.DefaultValue(false)]
    public System.bool AjaxEnabled {get; set;}
    Remarks
    Changing the value of this control also changes the values of the ClientServerTechnology and Technology properties of the web control.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also