AjaxOptions.InsertionMode Property

 

Gets or sets the mode that specifies how to insert the response into the target DOM element.

Namespace:   System.Web.Mvc.Ajax
Assembly:  System.Web.Mvc (in System.Web.Mvc.dll)

Syntax

public InsertionMode InsertionMode { get; set; }
public:
property InsertionMode InsertionMode {
    InsertionMode get();
    void set(InsertionMode value);
}
member InsertionMode : InsertionMode with get, set
Public Property InsertionMode As InsertionMode

Property Value

Type: System.Web.Mvc.Ajax.InsertionMode

The insertion mode ("InsertAfter", "InsertBefore", or "Replace"). The default value is "Replace".

See Also

AjaxOptions Class
System.Web.Mvc.Ajax Namespace

Return to top