what is the relationship between those two pages? what kind of transition between those two pages? if they are in the same web app, use a Session variableif one page serves as a remote host, look into classes in System.Net, like WebClient, HttpWebRequest/HttpWebResponse

解决方案 »

  1.   

    谢谢思归大哥,都是Web Page。
    在java里,可以重写Request,然后提交给另一页,在asp.net里不能实现类似的功能吗?
      

  2.   

    if they are in the web app, you can look into Server.Transfer, also you can save the data in HttpWebContext.Current.Items if the dataset is transient
      

  3.   

    非常感谢思归大哥,我想Server.Transfer就可以满足我的要求了:)