0

我有以下观点。这是我的观点的全部代码

<asp:Content ID="Content2" ContentPlaceHolderID="HeadContent" runat="server">
    <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
    <script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
</asp:Content>

<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
    <div>
        <table>
            <tr>
                <td>
                    <select id="clientDDL">
                    </select>
                    <% Html.DropDownList("clientDDL",
                        new SelectList((IEnumerable)ViewData["Clients"], "Code", "Name")); %>
                </td>
            </tr>
        </table>
    </div>
</asp:Content>

我使用模型中的下一个 ViewData:

public static List<lookup> GetClients()
        {
            using (ModelDataContext data = new ModelDataContext(System.Configuration.ConfigurationManager.ConnectionStrings["ConnectionString"].ToString()))
            {
                List<lookup> retVal = new List<lookup>();
                List<Client> lClient = data.Clients.Where(a => a.IsActive == true).ToList();
                lClient = lClient.OrderBy(o => o.ClientName).ToList();

                foreach (Client item in lClient)
                {
                    retVal.Add(new lookup() { Code = item.ClientID.ToString(), Name = item.ClientName, });
                }
                return retVal;
            }            
        }

这是我的控制器:

public ActionResult ProcedureFilter()
        {
            ViewData["Clients"] = WorkflowModels.GetClients();
            return View();
        }

我错过了什么?我的 DropDownList 仍然是空的。也许我必须提供一些参考?请有任何建议。

更新:问题是';' 在 <%= %> 部分的末尾。作品代码:

<%= Html.DropDownList("clientDDL",
                            new SelectList((IEnumerable)ViewData["Clients"], "Code", "Name")) %>
4

2 回答 2

2

在您提供的 ASP.NET 代码中,使用相同的(cliendDDL)select定义了 2 个 HTML 标记(或 DropdownLists ):id

   <select id="clientDDL"> <-- the first one
   </select> 
   <% Html.DropDownList("clientDDL",
      new SelectList((IEnumerable)ViewData["Clients"], "Code", "Name")); %> <-- the second one, Html.DropDownList generating a select under the hood.

是否有可能只显示第一个(空的)而第二个由于缺少字符而保持隐藏,从而将您预期的 HTML 生成例程(Html.DropDownList)更改为嵌入式代码块

也许代替:

<% Html.DropDownList

它应该是 :

<%= Html.DropDownList or <%: Html.DropDownList

请参阅此处了解 <%:%> ASP.NET 4 语法

已编辑

还有“;” 不需要行尾字符,应将其删除。

于 2013-10-21T22:38:19.857 回答
0

查看页面: "<%=Html.DropDownList("Description", New SelectList(ViewData("Description")), "--Select--")%>"

控制器:

函数 Purchase() 作为 ActionResult:

    Dim dataContext As New tblMVCDataContext
    Dim teststr As String
    Dim itemVar = From U In dataContext.Items Select U.Description

    For Each tbItem In itemVar

        teststr += tbItem + ","
    Next
    ViewData("Description") = teststr.Split(",")
    Return View(itemVar)
End Function
于 2014-01-14T12:50:25.690 回答