控制器具有不同的位置来查看表单

时间:2013-11-15 11:25:51

标签: c# asp.net-mvc asp.net-mvc-routing

我需要为表单使用控制器,但位于不同的位置。 我有一个注册表单,它是一个托管在数据库中的CMS页面。它使用AJAX注册用户,但我更喜欢使用POST,就像默认的注册表单一样,因为我想使用验证摘要。

@using (Html.BeginForm("Register", "_Account", new { ReturnUrl = Request.QueryString["ReturnUrl"] }, FormMethod.Post, new { id = "register", @novalidate = "novalidate", role = "form" }))

虽然该页面是在 /帐户/注册上提供的。无论如何让它从 / _帐户/注册中将View()返回到我的页面?

干杯

0 个答案:

没有答案