asp.net页面跳转
href=‘<%#A.aspx%>’现在想id=1的时候跳转到A.aspx;id=2的是跳转到B.aspx,请问该怎么写?...
href=‘<%#A.aspx%>’
现在想id=1的时候跳转到A.aspx; id=2的是跳转到B.aspx,请问该怎么写? 展开
现在想id=1的时候跳转到A.aspx; id=2的是跳转到B.aspx,请问该怎么写? 展开
2个回答
展开全部
string id = Request["id"].ToString();
if (id == "1")
{
Response.Redirect("A.aspx");
}
else if(id == "2")
{
Response.Redirect("B.aspx");
}
你也可以在前端控制,如:
<%# id== "1" ? " <a href='A.aspx'>link1</a> " : "<a href = 'B.aspx'> linke2</a>" %>
if (id == "1")
{
Response.Redirect("A.aspx");
}
else if(id == "2")
{
Response.Redirect("B.aspx");
}
你也可以在前端控制,如:
<%# id== "1" ? " <a href='A.aspx'>link1</a> " : "<a href = 'B.aspx'> linke2</a>" %>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询