
May 30th, 2006, 10:42 PM
|
Friend of Wrox
|
|
Join Date: Nov 2003
Location: , NJ, USA.
Posts: 1,348
Thanks: 0
Thanked 5 Times in 5 Posts
|
|
In the selectedindexchanged event of the radiobuttonlist:
if (RadioButtonList1.SelectedValue == 1) {
TextBox1.Visible = true;
} else {
TextBox1.Visible = false;
}
Set AutoPostBack = TRUE for the RadioButtonList
|