AjaxOptions.UpdateTargetId Property

 

Gets or sets the ID of the DOM element to update by using the response from the server.

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

Syntax

public string UpdateTargetId { get; set; }
public:
property String^ UpdateTargetId {
    String^ get();
    void set(String^ value);
}
member UpdateTargetId : string with get, set
Public Property UpdateTargetId As String

Property Value

Type: System.String

The ID of the DOM element to update.

Examples

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>
}

See Also

AjaxOptions Class
System.Web.Mvc.Ajax Namespace

Return to top