Link to home
Start Free TrialLog in
Avatar of vbnetcoder
vbnetcoder

asked on

drop down list

In a drop down list what is the value property typically used for

DropDownList.selecteditem.value
ASKER CERTIFIED SOLUTION
Avatar of Nasir Razzaq
Nasir Razzaq
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Are you referring to the SelectedValue member?
: \

Nevermind. I read the question wrong.
To expand on CodeCruiser's comment, DropDownList.selecteditem returns an object of type ListItem. This object has the members Text and Value. From here, it's as CodeCruiser states  : )