其他分享
首页 > 其他分享> > Response.Redirect

Response.Redirect

作者:互联网

页面跳转传参。

 

如果不是通用的跳转可以通过,在原始页面定义对象保存数据

跳转的目标页面可以:

SourcePage pae=(SourcePage)contet.hander
//获取源页面的对象。

 

通用的跳转,可以使用url传参也可以使用cookie传参,当前其他方式也是可以的。比如Application,session等。

Response.Redirect("AA.aspx?UserId=" + userId + "&roleId=" + _roleId + "&CName=" + System.Web.HttpUtility.UrlEncode(channelName));

 

标签:Redirect,传参,roleId,跳转,Response,页面
来源: https://www.cnblogs.com/Tpf386/p/12022560.html