Click here to Skip to main content
15,882,113 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hello.
I have a gridviwe in whic i adds :
radiobuttonlist
and Button.

i want initially button.visible is false i.e. initially button get hidden and get displayed when any item is selected from the Above radio Button list.
and then Button will appear and then user hit the button and button action takesplace.

i want a refresh code so that button get displayed on selecting item form RadioButtonlist and where i creat that button action(Hit) logic.
Posted

1 solution

1.) Set your buttons visibility to false in design view.
2.) Assuming you're using Visual Studio, Double-click your Radio Button list, and it will create an "SelectedIndexChanged" event.
3.) Add the code:

yourButtonNameHere.Visible = true;


to the event.

Good luck :)
 
Share this answer
 
Comments
Shagun Bansal 15-Aug-12 4:55am    
But i aad RadioButtinList inside GridView..
Reelix 15-Aug-12 7:25am    
Do you mean that the Radio Button List is added through code, instead of using a control?

If so, may you please update your question with code showing how the controls are added.

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