RadioButtonList控件问题
报名表,填写基本信息后,有一份协议,协议下有选择。现要求,当选择Yes时。才能提交。选择No时不能提交。...
报名表,填写基本信息后,有一份协议,协议下有选择
。现要求,当选择Yes时。才能提交。选择No时不能提交。 展开
。现要求,当选择Yes时。才能提交。选择No时不能提交。 展开
展开全部
首先需要一个按钮,然后为按钮添加事件;
在事件中做一个判断就好啦。
例如:
protected void LinkButton1_Click(object sender, EventArgs e)//按钮事件
{
判断
if (RadioButton1.Checked == true) //yes
{
Page.Response.Redirect("WebForm2.aspx"); //跳转到其他页面2
}
else //no
{
Page.Response.Redirect("WebForm3.aspx"); //跳转到其他页面3
}
}
在事件中做一个判断就好啦。
例如:
protected void LinkButton1_Click(object sender, EventArgs e)//按钮事件
{
判断
if (RadioButton1.Checked == true) //yes
{
Page.Response.Redirect("WebForm2.aspx"); //跳转到其他页面2
}
else //no
{
Page.Response.Redirect("WebForm3.aspx"); //跳转到其他页面3
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询