0

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

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

尽管该页面在/Account/Register上提供。有没有办法让它从/_Account/Register返回 View() 到我的页面?

干杯

4

0 回答 0