你可以用Session呀
,不用传递了

解决方案 »

  1.   

    session("abc")='my string'
    別一個網頁調用就行了。
      

  2.   

    绝对不止一个Session 方案;
    还可以:
         用Request.QueryString["common"] //  http://url/page?common=helloworld  
    还可以:
         Application["common"] = "helloworld" ;// 在所有页面中公享;
    还可以:
         将 string common = "helloworld" 写入 web.config 的
         <configuration>    
              <appSettings>
                   <add key="common" value="helloworld" />
              <appSettings>
          </configuration> 
         Page 用 ConfigurationSettings.AppSettings["common"]  ;
      

  3.   

    to: solol() 
       ViewState 只能在单个页起作用,它实际是保存在<input type="hidden" ...>当中;   如果说还有的话, Cache["common"] = "HELLO WOLRD";
                       勉强算一个,但Cache 并不可靠!它随时被系统清除;