ASP.NET MVC 2 を使用して、部分ビューで動的ドロップダウン リストを生成する必要があります。
コントローラ:
[HttpGet]
public ActionResult GetDestinationList()
{
JqGridClientRepository rep = new JqGridClientRepository();
IEnumerable<Client> clients = rep.GetClients();
var li = from s in clients
select new
{
Company = s.Company
};
return PartialView(li);
}
以下は私が現在持っているビューであり、コントローラーによって返された選択リストに値をバインドする必要があります。
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<dynamic>" %>
<select>
<option value="1">One</option>
<option value="2">Two</option>
...
</select>