我有我的網頁更新選擇列表中的局部視圖
<td colspan="2">
<table border="0" cellpadding="3" cellspacing="1" width="100%">
<tr><td colspan="2"><%= Html.LabelFor(model => model.CustomerID)%></td></tr>
<tr>
<td width="85%">
<%= Html.DropDownListFor(model => model.CustomerID, Model.CustomerList, new { id = "customerSelect", style = "width: 380px" })%>
<%= Html.ValidationMessageFor(model => model.CustomerID, "*")%>
</td>
<td width="15%"><button id="btnAddCustomer" style="font-size: 0.7em;">Add new Customer</button></td>
</tr>
</table>
</td>
以下標記當在btnAddCustomer
用戶點擊一個模式對話框與形式開放增加新客戶。它編譯表格,然後按下保存按鈕。
如何刷新select元素以包含最新添加的客戶並將其選中?
我應該使用ajax嗎?