我使用MVC C# 說我有以下的ActionResult:的ActionResult HttpPost需要訪問值
public ActionResult Create(string location)
{
...
View()
}
我需要使用的位置主要在[httppost]
[HttpPost]
public ActionResult Create(Employee employee)
{
...
// I need to access the value of location here but I dont' have access to the View
}
什麼獲取位置價值的最佳方式。我可以創建一個視圖模型並將該值傳遞給視圖,然後在[HttpPost]中進行檢索,但由於視圖受限制,因此無法訪問該視圖。
定義受限? – 2012-07-24 22:10:11
我無法修改視圖內的任何內容。該視圖已創建。我們被告知不要以任何形式修改 – 2012-07-24 22:15:39
@NatePet - 這是功課嗎?聽起來就像作業通常需要的那種任意限制。 – 2012-07-24 22:21:28