I am populating a dropdownlist via jquery and I can always get the selected dropdownItem like this:
Request.Form[EducationTypes.UniqueID]
The above code is performed on a normal postback to the server.
I can't figure out how to get all the items in the list when im at the server, not just the selected one...
Is this possible? and no I do not want to do a AJAX call to the server, i want to know if this can be done when doing a normal postback.
Thanks!