行動這是在我的控制器操作方法傳遞參數值使用RedirectToaction MVC3
public ActionResult RedirectToDemoView(string message)
{
var model = new Error();
model.Message = message;
return this.View("Error", model);
}
如何傳遞的參數,從我的觀點這次行動使用jQuery(.cshtml)頁面?這裏是我的代碼
redirectToAction('@Url.Action("RedirectToDemoView", "Audit")',
new { message:$(request.responseText).find('h2').eq(0).text() });
它傳遞null
值RedirectToDemoView
方法。
請幫
謝謝,它爲我工作 – user1005310