Asp.Net MVC DropDownList Data Binding
问题 <form id="Form1" runat="server"> <asp:DropDownList ID="dvmDrmList" runat="server"> <asp:ListItem>Theory</asp:ListItem> <asp:ListItem>Appliance</asp:ListItem> <asp:ListItem>Lab</asp:ListItem> </asp:DropDownList> </form> I want to bind this DropDownList in controller. I mean how can I get the value of the dropDownList in the action method in controller class. Thanks. 回答1: I see that you are using forms with runat="server" and asp:XXX web controls. Those are notions should never be used in ASP