您的位置:首页 > 编程语言 > ASP

Asp.Net下页面之间传值

2005-05-30 15:57 543 查看
一 打开新页面并传值
1.使用Response.Redirect()
// WebForm1.aspx下
string Message = Server.UrlEncode("你好世界!");
Response.Redirect("WebForm2.aspx?Msg=" + Message);
//Webform2.aspx 接收传来的值
string strMsg = Server.UrlDecode(Request.QueryString["Msg"]);

2.使用脚本
//WebForm1.aspx下
Response.Write(
"<script>window.open('WebForm2.aspx?Msg=" + Message + "','','')</script>");
// WebForm2.axpx
string strMsg=Request.QueryString["Msg"];

二.使用Server.Transfer()传递值.

假设将WebForm1.aspx上的TextBox1的Text传递到WebForm2.aspx,则可以这样.
在WebForm1.aspx上加一Button,用来转向WebForm2.aspx,
Clieck事件内增加代码:
Server.Transfer("WebForm2.aspx", true);
在WebForm2.aspx上接受WebForm1.aspx上的值:
string text=Request.Form["TextBox1"] ;
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: