标题if ( RadioButtonList1.SelectedItem.Value == myRead[“usetype”].ToString()
{ Response.Redirect("student.aspx"); }
没有报错但是实现不了跳转,测试过两个值都是相等的
RadioButtonList1.SelectedItem.Value获取到的值是student
myRead["usetype"].ToString()这个获取到的值也是student
可是就是实现不了Response.Redirect("student.aspx");这段话的功能
但是当if ( RadioButtonList1.SelectedItem.Value==“student”)
{
Response.Redirect("student.aspx");
}
它能自动跳转到student.aspx
怎么解决呀