I have a ListBox in an ASP.NET 1.1 app. SelectionMode is set to Multiple. Nothing is currently happening with regards to the listbox on form submit, so there is nothing happening in my button's click event that is causing the error.
Immediately upon selecting 2 (or more) items in the list, and clicking submit, I am hit with an error telling me a dropdownlist cannot have multiple items select. I understand this is an issue revolving around listbox and dropdownlist using the same base class, but have no idea how to fix it.
Any suggestions? (Full error follows)
A DropDownList cannot have multiple items selected.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Web.HttpException: A DropDownList cannot have multiple items selected.
Thanks
HTH.