2
我使用asp.net的MVC 3如何更新表單內容
有一種形式使Web應用程序:
@using (Html.BeginForm())
{
<div>
<fieldset>
<legend>Approvals</legend>
<div>
@Html.Label("Ticket ID")
@Html.DropDownList("TicketID")
</div>
<div>
@Html.Label("Distributor ID")
@Html.TextBox("DistributorID", null, new { @readonly = "readonly" })
</div>
<div>
@Html.Label("Description")
@Html.TextArea("Description", new { @readonly = "readonly" })
</div>
<div>
@Html.Label("Resolved")
@Html.DropDownList("Resolved")
</div>
<div>
@Html.Label("Date (yyyy/mm/dd)")
@Html.TextBox("Date")
</div>
<div>
@Html.Label("Time (HH:mm:ss)")
@Html.TextBox("Time")
</div>
</fieldset>
<input type="submit" value="Approve/Disapprove" />
</div>
}
如何從讀取值之後更新等領域的數據數據庫,只要從TicketID下拉列表中選擇一個票證ID。即每當票證ID改變時,相應地,在從特定票證ID的數據庫讀取數據而不提交表格的情況下,其他字段中的數據應該改變。