S
saurabh
I have a form in which there are two types of control a) asp.net (3
radio button) b) html control (textbox).
On everytime page is load (postback or withoupostback) i want my code
to check which radio button is checked. If any of the first two radio
button is checked i want to set textbox value as "t" and in case 3rd
radio button is checked i want to set textbox value as "f"
This thing is not working :
if(radio1.checked==true)
textbox.text="t"
because textbox is an html control and not an asp.net control.....can
anybody tell me how to solve this issue???
radio button) b) html control (textbox).
On everytime page is load (postback or withoupostback) i want my code
to check which radio button is checked. If any of the first two radio
button is checked i want to set textbox value as "t" and in case 3rd
radio button is checked i want to set textbox value as "f"
This thing is not working :
if(radio1.checked==true)
textbox.text="t"
because textbox is an html control and not an asp.net control.....can
anybody tell me how to solve this issue???