AjaxOptions Class
Represents option settings for running Ajax scripts in an ASP.NET MVC application.
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
| Name | Description | |
|---|---|---|
![]() | AjaxOptions() | Initializes a new instance of the AjaxOptions class. |
| Name | Description | |
|---|---|---|
![]() | AllowCache | |
![]() | Confirm | Gets or sets the message to display in a confirmation window before a request is submitted. |
![]() | HttpMethod | Gets or sets the HTTP request method ("Get" or "Post"). |
![]() | InsertionMode | Gets or sets the mode that specifies how to insert the response into the target DOM element. |
![]() | LoadingElementDuration | Gets or sets a value, in milliseconds, that controls the duration of the animation when showing or hiding the loading element. |
![]() | LoadingElementId | Gets or sets the id attribute of an HTML element that is displayed while the Ajax function is loading. |
![]() | OnBegin | Gets or sets the name of the JavaScript function to call immediately before the page is updated. |
![]() | OnComplete | Gets or sets the JavaScript function to call when response data has been instantiated but before the page is updated. |
![]() | OnFailure | Gets or sets the JavaScript function to call if the page update fails. |
![]() | OnSuccess | Gets or sets the JavaScript function to call after the page is successfully updated. |
![]() | UpdateTargetId | Gets or sets the ID of the DOM element to update by using the response from the server. |
![]() | Url | Gets or sets the URL to make the request to. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | (Inherited from Object.) |
![]() | Finalize() | (Inherited from Object.) |
![]() | GetHashCode() | (Inherited from Object.) |
![]() | GetType() | (Inherited from Object.) |
![]() | MemberwiseClone() | (Inherited from Object.) |
![]() | ToString() | (Inherited from Object.) |
![]() | ToUnobtrusiveHtmlAttributes() | Returns the Ajax options as a collection of HTML attributes to support unobtrusive JavaScript. |
This class provides options for methods of the AjaxHelper and AjaxExtensions classes.
The following example shows how to use the AjaxOptions class to set the ID of the elements that are used to display the status message and to enter text.
<p>
Page Rendered: @DateTime.Now.ToLongTimeString()
</p>
<span id="status">No Status</span>
<br />
@Ajax.ActionLink("Update Status", "GetStatus", new AjaxOptions{UpdateTargetId="status" })
<br /><br />
@using(Ajax.BeginForm("UpdateForm", new AjaxOptions{UpdateTargetId="textEntered"}))
{
@Html.TextBox("textBox1","Enter text")
<input type="submit" value="Submit"/><br />
<span id="textEntered">Nothing Entered</span>
}
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.


