zoukankan      html  css  js  c++  java
  • Server.Transfer()方法在页间传值

    ASP.NET Server.Transfer()是在两个页面之间进行传值的好方法,从A页面Transfer到B页面时,就可以在B页面通过Context.Handler获得A页面的一个类的实例,从而在B调用A的各个成员对象。

    下面的示例建立了WebForm1和WebForm2,通过Server.Transfer()方法演示在WebForm2中读取WebForm1的文本框、读取属性、通过Context传值、调用WebForm1的方法等:

    WebForm1上放置一个TextBox1和一个Button1,程序如下:

    public class WebForm1 : System.Web.UI.Page
    {
    protected System.Web.UI.WebControls.TextBox TextBox1;
    protected System.Web.UI.WebControls.Button Button1;

    private void Page_Load(object sender, System.EventArgs e)
    {
    Context.Items.Add("Context","Context from Form1");
    }
    public string Time
    {
    get{return DateTime.Now.ToString();}
    }
    public string TestFun()
    {
    return "Function of WebForm1 Called";
    }
    #region Web 窗体设计器生成的代码
    override protected void OnInit(EventArgs e)
    {
    InitializeComponent();
    base.OnInit(e);
    }

    private void InitializeComponent()
    {
    this.Button1.Click += new System.EventHandler(this.Button1_Click);
    this.Load += new System.EventHandler(this.Page_Load);

    }
    #endregion

    private void Button1_Click(object sender, System.EventArgs e)
    {
    Server.Transfer("WebForm2.aspx", true);
    }


    在WebForm2上放置一个Literal1控件,程序如下:

    public class WebForm2 : System.Web.UI.Page
    {
    protected System.Web.UI.WebControls.Literal Literal1;

    private void Page_Load(object sender, System.EventArgs e)
    {
    string strTxt="";
    WebForm1 oForm=(WebForm1)this.Context.Handler;
    strTxt+="Value of Textbox:"+Request.Form["TextBox1"] +"<br>";
    strTxt+="Time Property:"+oForm.Time +"<br>";
    strTxt+="Context String:"+Context.Items["Context"].ToString() +"<br>";
    strTxt+=oForm.TestFun() +"<br>";
    Literal1.Text =strTxt;
    }

    #region Web 窗体设计器生成的代码
    override protected void OnInit(EventArgs e)
    {
    InitializeComponent();
    base.OnInit(e);
    }

    private void InitializeComponent()
    {
    this.Load += new System.EventHandler(this.Page_Load);

    }
    #endregion
    }

    补充说明,就是Transfer方法的第二个参数指示是否保留页面的Form和QuerryString的值,你可以试着把它设为False,则在WebForm2中将读不到TextBox1的值。
  • 相关阅读:
    获奖2008年金蝶集团优秀员工感言
    对如何建设一个可运维高可靠的SAAS平台,我终于有了想法!!!
    javaeye站点被ARP攻击有感
    回想过去几年软件业的荒唐事
    也说一种普遍错误使用的LOG方式
    看看国外的本科生能做什么?(Robert Love)
    zz乱码、编码问题详
    查找linux内核支持的usb摄像头列表(UVC万能驱动)
    Greg KroahHartman LDD3 作者,LKN作者,linux driver 开发者,新闻两则,因为过时了所以就放我这个垃圾博客里吧
    zz QEMU 与 Bochs
  • 原文地址:https://www.cnblogs.com/ziyan22/p/881303.html
Copyright © 2011-2022 走看看