2011-07-14 88 views

回答

0

也許最簡單的方法是修改網站2,添加一個控制器動作這將接受application/x-www-form-urlencoded請求(又名簡單的表單POST):

<form action="http://site2.com/" method="POST"> 
    <%= Html.HiddenFor(x => x.XmlData) %> 
    <input type="submit" value="Go to site 2" /> 
</form> 

及站點2新創建的作用,這將作爲一個入口點內,你可以獲取XML作爲字符串,並對其進行處理:

[HttpPost] 
[ValidateInput(false)] // <-- that's necessary as we are POSTing XML 
public ActionResult Index(string xmlData) 
{ 
    // Do something with the posted XML, and redirect or directly render a view 
} 
+0

對於延遲迴復感到抱歉。 – Sean

+0

工作得很好。非常感謝。 – Sean

相關問題