ASP.NET 中页面传参的几种方法
ASP.NET 中页面传参的几种方法
答案:①.表单提交:
…………
Form1.submit();
……
此种方法在ASP。NET中无效,因为asp.net 的表单总是提交到自身页面,如果要提交到别一页面,需要特殊处理
②.连接地址传送:接收页面:string str=Request[“param1”]
③.Session共享发送页面:Session(“param1”)=”1111”; 接收页面:string str=Session(“param2”).ToString();
④.Application 共享:发送页面:Application(“p1”)=”1111”;
接收页面:string str= Application(“p1”).ToString();
此方法不常使用,因为Application 在一个应用程序域范围共享,所有用户可以改变及设置其值,故只应用计数器等需要全局变量的地方
⑤.Cookie
⑥.Response.Redirrct()方式:Response.Redirrct(“target.aspx?p1=1111?m2=2222”)
接收页面:string str=Request[“p1”]
⑦.Server.Transfer()方式:Server.Transfer(“target.aspx?p1=1111?m2=2222”);
接收页面:string str=Request[“p1”]
;