目前我正在使用这样的 ASP.net DropdownList:
<asp:DropDownList ID="CourseSelectionDropdown" DataTextField="DropdownDisplay" DataValueField="CourseId"
runat="server" Font-Size="Small" Width="250px" OnSelectedIndexChanged="CourseSelectionDropdown_OnSelectedIndexChanged"
AutoPostBack="True">
它看起来相当难看,我想使用类似下面的东西,我将进一步定制(删除图像,并使每个列表项双行 - 很像 facebook 下拉菜单)。
http://tympanus.net/Tutorials/CustomDropDownListStyling/index2.html#
我是 ASP.net 的新手,想要一些关于如何将 HTML/JS 列表项与 C# 代码中的方法链接起来的指针。
我在互联网上搜索了两个小时,没有任何具体或易于阅读的解决方案。