ASP.NET 中頁(yè)面?zhèn)鲄⒌膸追N方法
答案:①.表單提交:
…………
Form1.submit();
……
此種方法在A(yíng)SP。NET中無(wú)效,因?yàn)閍sp.net 的表單總是提交到自身頁(yè)面,如果要提交到別一頁(yè)面,需要特殊處理
、.連接地址傳送:接收頁(yè)面:string str=Request[“param1”]
③.Session共享發(fā)送頁(yè)面:Session(“param1”)=”1111”; 接收頁(yè)面:string str=Session(“param2”).ToString();
、.Application 共享:發(fā)送頁(yè)面:Application(“p1”)=”1111”;
接收頁(yè)面:string str= Application(“p1”).ToString();
此方法不常使用,因?yàn)锳pplication 在一個(gè)應(yīng)用程序域范圍共享,所有用戶(hù)可以改變及設(shè)置其值,故只應(yīng)用計(jì)數(shù)器等需要全局變量的地方
、.Cookie
、.Response.Redirrct()方式:Response.Redirrct(“target.aspx?p1=1111?m2=2222”)
接收頁(yè)面:string str=Request[“p1”]
⑦.Server.Transfer()方式:Server.Transfer(“target.aspx?p1=1111?m2=2222”);
接收頁(yè)面:string str=Request[“p1”]
【ASP.NET 中頁(yè)面?zhèn)鲄⒌膸追N方法】相關(guān)文章:
唱歌中的幾種發(fā)音方法10-05
關(guān)于asp.net中List的使用方法11-10
介紹幾個(gè)ASP.NET中容易忽略的方法函數(shù)11-10
在PPT中添加聲音的幾種方法11-11