私はMVCC#を使用しています。次のActionResultがあるとします。
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]で取得することはできますが、制限されているため、ビューにアクセスできません。