在有些情況下,我們用 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方法進行頁面提交. 參數通過上述方法進行傳遞.