ASP.net实现页面跳转的方法

云朵,像一只洁白的兔子,像仙女的纱带,还像一张张可爱的笑脸。盛开的荷花像个妙龄少女,清透出尘;像舞动的仙子,娇艳欲滴;像个刚出生的孩子,一尘不染。

主要是使用response的属性,代码如下:


protected void LinkButton1_Click(object sender, EventArgs e)
{
string url = "InfoShow.aspx";
Response.Redirect(url);
}

protected void LinkButton1_Click(object sender, EventArgs e)
{
string url = "InfoShow.aspx";
Response.Redirect(url);
}//当然我们可以在页面跳转的时候进行参数传递,代码如下:


protected void Menu1_MenuItemClick(object sender, MenuEventArgs e)
{
string url, s;
s = e.Item.Value.ToString();
url = "InfoRelease.aspx?UserName=" + s.Trim();
Response.Redirect(url);
}

protected void Menu1_MenuItemClick(object sender, MenuEventArgs e)
{
string url, s;
s = e.Item.Value.ToString();
url = "InfoRelease.aspx?UserName=" + s.Trim();
Response.Redirect(url);
}


上面是我的一个项目中的代码所以有item,大家可以根据自己的情况进行设定。

那么既然传递了参数,在跳转的页面怎样获取呢???

代码如下:


protected void Page_Load(object sender, EventArgs e)
{
if (Request["UserName"] != null)
{
string s = Request["UserName"].ToString();
// form1.Visible = true;
txtInfoclass.Text = s;
}
}

protected void Page_Load(object sender, EventArgs e)
{
if (Request["UserName"] != null)
{
string s = Request["UserName"].ToString();
// form1.Visible = true;
txtInfoclass.Text = s;
}
}



protected void Page_Load(object sender, EventArgs e)
{
txtAlert.Text = "";
if (Request["UserName"] != null)
{
string s = Request["UserName"].ToString();
// form1.Visible = true;
txtInfoclass.Text = s;
}
}

protected void Page_Load(object sender, EventArgs e)
{
txtAlert.Text = "";
if (Request["UserName"] != null)
{
string s = Request["UserName"].ToString();
// form1.Visible = true;
txtInfoclass.Text = s;
}
}

以上就是ASP.net实现页面跳转的方法。失败好比被人打,你不反抗他就会有下一次!更多关于ASP.net实现页面跳转的方法请关注haodaima.com其它相关文章!

您可能有感兴趣的文章
ASP.NET中Response.BufferOutput属性的使用技巧

ASP.NET轻量级MVC框架Nancy的基本用法

使用grpcui测试ASP.NET core的gRPC服务

ASP.NET Core中的对象池介绍

.NET集成ORM框架HiSql