Click here to Skip to main content
15,913,941 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How we check that values has come in my dropdownlist?
i am doing
if(DropDownList1.SelectedValue == true)
{
Response.Redirect("WebForm5?val=" + DropDownList1.SelectedValue + "");
}
please correct my code...:)
Posted

1 solution

C#
if(DropDownList1.SelectedValue!= null)


i think this will help you
 
Share this answer
 
Comments
faizyab 2009 5-Feb-12 13:52pm    
yes friend thank you so much
[no name] 5-Feb-12 14:07pm    
welcome

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900