ASP.NET 中页面传参的几种方法

2023-06-30   


答案:①.表单提交:
  
   …………
   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”]


相关内容:

  1. 四川internet信息高速公路(C#)笔试题
  2. 某公司.Net方向面试题
  3. ASP.NET的一套简单笔试题
  4. 喜创公司asp.net(机试,笔试题)
  5. ASP.NET中共有几种类型的控件?各有什么区别?
  6. 广州某公司的asp.net面试题