1
我目前有一個用戶控件,用於/地址/編輯和/地址/創建頁面。此用戶控件只是在它下面的代碼提交新的地址系統:有關ASP.NET MVC表單發佈場景的問題
<%
using (Html.BeginForm())
{
%>
<table>
<tr>
<td>Street Address</td>
<td>
<%= Html.TextBox("StreetAddress", (ViewData.Model != null) ? ViewData.Model.StreetAddress : "") %>
<%= Html.ValidationMessage("Address.StreetAddress") %>
</td>
</tr>
</table>
<%= Html.SubmitButton() %>
<%
if (ViewData["GeocodeResults"] != null) {
%>
<p>
Google maps found the following addresses that matched the address you entered. Please select
the appropriate address. If none of these addresses are correct, try reentering the address
again and be as specific as possible.
</p>
<ul>
<%
foreach (GeocodeResult geocodeResult in (List<GeocodeResult>)ViewData["GeocodeResults"]) {
%>
<li>
<%= geocodeResult.StreetAddress %>
</li>
<%
}
%>
</ul>
<%
}
%>
<%
}
%>
總結上面的代碼,它的作用是在控制器,它查詢谷歌地圖進行地理編碼的地址文本框(即將其變成一組經度/緯度座標)。當Google地圖返回多個結果時,我會將這些結果存儲到ViewData [「GeocodeResults」]中,然後向最終用戶顯示可能的地址。
現在,這對於顯示地址工作正常,但我真正想要的是將該列表呈現爲超鏈接列表,以便用戶可以單擊適當的地址並將該表單與該地址一起提交在文本框中的一個。有沒有辦法做到這一點?