首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

response.redirect 传参数解决方法

2012-02-26 
response.redirect传参数response.redirect( hhh.aspx?auth +mythear+)这样可以传吗?[解决办法]传这个

response.redirect 传参数
response.redirect( "hhh.aspx?auth= '+mythear+ ' ");
这样可以传吗?

[解决办法]
传这个有意义么?
[解决办法]
发送
string mythear = "abc ";
Response.Redirect( "hhh.aspx?auth= " + mythear);

接受
string xx = Request.QueryString[ "auth "];
[解决办法]
确定+肯定的告诉你可以

如楼上 高歌 所示

:D



[解决办法]
补充下如果传多参数的话
发送
string mythear = "abc ";
string mythear1 = "abc1 ";
Response.Redirect( "hhh.aspx?auth= " + mythear + "&auth1= " + mythear1);


接受
string xx = Request.QueryString[ "auth "];
string xx = Request.QueryString[ "auth1 "];
[解决办法]
是呀,可以呀
[解决办法]

咋就没机会给我了呢?呵呵!

热点排行