Click here to Skip to main content
15,894,546 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How to disable a Dropdownlist once someone has selected an item in the Dropdownlist?
Posted

have u tried it using j-query?
 
Share this answer
 
On DropDownChange Event do
Dropdownlist1.Enable=false;
and set Autopostbackvalue=true;

C#
protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
   {
       DropDownList1.Enabled = false;
   }
 
Share this answer
 
v2
Comments
Surendra0x2 6-Dec-12 7:14am    
Try My Above Solution This is Working i tested :)

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