【发布时间】:2021-11-17 21:50:51
【问题描述】:
不工作 asp:DropDownList . . . . . . . . . . . . ... . …… .
。 .. .. View result
使用 Layout = "_Layout.cshtml" 添加.cshtml
@section Head{
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="~/css/make-ad.css" rel="stylesheet" />
<title>Document</title>
<form asp-controller="Item" asp-action="Add" method="post">
<label> Category</label>
<input asp-for="CategoryId" type="text" />
<asp:DropDownList class="ddlstyle"ID="DropDownList1" runat="server" >
<asp:ListItem Value="">Please Select</asp:ListItem>
<asp:ListItem>New Delhi </asp:ListItem>
<asp:ListItem>Greater Noida</asp:ListItem>
<asp:ListItem>NewYork</asp:ListItem>
<asp:ListItem>Paris</asp:ListItem>
<asp:ListItem>London</asp:ListItem>
</asp:DropDownList>
<button type="submit">
Add
</button>
</form>
【问题讨论】:
-
您不能混合使用网络表单和剃须刀。