Click here to Skip to main content
15,886,724 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I want to disable some of the textboxes of my page on a radio button click. I have tried it with update panel and its other attributes but didnt get result.how can i make it possible? Plz help.
Posted
Comments
bbirajdar 9-Oct-12 5:45am    
Use javascript
bbirajdar 9-Oct-12 5:45am    
"but didnt get result" ??? Was your computer switched ON ?

1 solution

Hi,

For this you need to write below code into the radio button on click event mehtod.

textbox.Enabled = false;

And please makesure AutoPsotback property should be true in radio button and all the textbox and radio button should be in same update panel tag.
 
Share this answer
 
Comments
Member 9497070 9-Oct-12 12:34pm    
Thanks a lot for the help.I made the mistake of putting radio button outside the update panel and now my problem is solved.

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