确定按钮的事件中
foreach(ListItem li in radiobuttonlist1.Items)
{
if(   li.Checked)
  {
    Response.Redirect(li.Text)
  }
}