Currently my ASP.net DropdownList is set up like this:
<asp:DropDownList ID="CourseSelectionDropdown" DataTextField="DropdownDisplay" DataValueField="CourseId"
runat="server" Font-Size="Small" Width="250px" OnSelectedIndexChanged="CourseSelectionDropdown_OnSelectedIndexChanged"
AutoPostBack="True">
However, I find it unappealing and would like to create a custom dropdown similar to the one showcased in the following link (minus the images and with double line items):
http://tympanus.net/Tutorials/CustomDropDownListStyling/index2.html#
Since I am new to ASP.net, I am seeking advice on how to connect the HTML/JS list items with a method in the C# code.
Despite spending hours searching online, I have yet to find a straightforward solution that is easy to understand.