I have a DropDownList with values
1.--select one--
2.one
3.two
4.three
Now I want to know whether user have changed the default value of DropDownList or not.Currently I am hard coding the values like this
if(ddlCountry.SelectedItem.Text !="--Select One--")
I don't think this is a good practice as I have a lot of DropDownLists like this in my page and some will be binded dynamically..Can any one give me the best practice?