I've got an a text box and a button I want to enable /disable upon radio button checked
protected void chkBookActive_CheckChanged(object sender, EventArgs e){
txtCourseTitle.Text = " no input required"
txtCourseTitle.Enabled = false;
btnSearch.Enabled = true;
}