how to disable textbox when click on radiobutton using VB script on Visual Studio.Net 2005.
currently i used this coding but it is not functioning.
currently i used this coding but it is not functioning.
Code:
Private sub RadioButton1_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadioButton1.CheckedChanged
If RadioButton1.Checked Then
Me.textBox1.Visible = True
Else
Me.textBox1.Visible = False
End If
End Sub
Comment