程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> .NET實例教程 >> Server.Transfer 方法如何傳遞復雜的參數

Server.Transfer 方法如何傳遞復雜的參數

編輯:.NET實例教程

在有些情況下,我們用 Sever.Transfer方法轉到另一個頁面, 有些復雜的參數,如XML串等參數可以采用Context.Item[]的方法進行傳遞

范例代碼:



        Context.Items.Add("strFlowUsers", strRet);
        Context.Items.Add("strAttXml", strAttXML);
        Context.Items.Add("strOpinion", strOpinion);
        Context.Items.Add("strFormXMLValue", strFormXMLValue);

        Server.Transfer("../Forms/flow_Sender.ASPx?MessageID=" + lngMessageID.ToString() + "&ActionID=" + strActionID, true);


獲取參數范例:


strUsersXML = Context.Items["strFlowUsers"].ToString();
            strValues = Context.Items["strFormXMLValue"].ToString();
            strAttXml = Context.Items["strAttXML"].ToString();
            strOpinion = Context.Items["strOpinion"].ToString();


應用場景:
    E8.Net工作流平台,移動應用架構中,需要為下一個頁面提交非常復雜的參數,如表單值(XML)等,由於XML標記的特殊性,和URL長度限制,同時Web Form中又不方便 POST方法提交參數,因此采用 Server.Transfer方法進行頁面提交. 參數通過上述方法進行傳遞. 



  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved