gpt4 book ai didi

c# - ASP.NET - 在一个注册表中注册的两种类型的用户?

转载 作者:太空狗 更新时间:2023-10-29 20:30:23 25 4
gpt4 key购买 nike

我正在构建一个网站应用程序,它将有两种不同类型的用户,我们称其为 A,另一种为 B。它们有一些相似的数据,比如:'name','password'等,其余的都不一样。我分别为他们做了2张表,因为我需要这样,但是我有一个想法,我不确定我是否可以做到!

这个想法是,当用户进入注册页面时,他们将看到一个注册表单,其中包含 AB 之间相似的数据,并且然后我会让用户选中一个复选框,指示它是 A 用户还是 B 用户。根据他们的选择,表格的其余部分将出现在同一页面中,以便他们继续注册。

我在 C# 中使用 ASP.NET,我想知道这个想法是否适用?我的问题是复选框 - 如何让注册表的其余部分根据他们选择的内容出现,然后将其添加到正确的表格中?

最佳答案

MVC?

2个选项:

要么在您的 html 中同时包含两种形式,属性 ID = 'form a', 'form b'。确保将表单提交给不同的操作。像这样显示隐藏任何一种形式:

$('.radioBtn').click(function() {
var formType = $(this).val();
//alert(formType);
if (formType == "A") {
$('#FormA').show();
$('#FormB').hide();
} else {
$('#FormB').show();
$('#FormA').hide();
}
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<form style="display: none" id="FormA" action="/actionA">
.... your html FORM A
</form>
<form style="display: none" id="FormB" action="/actionB">
.... your html FORM B
</form>

<input type="radio" name="typeOfForm" class="radioBtn" value="A">Form A
<input type="radio" name="typeOfForm" class="radioBtn" value="B">Form B

另外,如果你想显示表单,就不要做 display:none在表单内部有一个设置为在用户做出选择之前不显示的。

--

使用 ajax,将您的表单作为局部 View ,并在单击 radio 后将它们上传到目标 div。 (如果需要请告诉我们)

我认为第一个显示/隐藏就足够了。没有理由上传,因为表单只是一组空输入。

编辑

接下来,我们在您的 Controller 中捕获这些提交的表单。每个表单将提交相同的操作,或者您希望执行不同的操作,这没有区别 - 您的偏好。

选项 1。页面上的表单:

 <form action='@Url.Action("YourRegisterAction", "controller")' >
<input type="hidden" name="FormType" value="A"/> <!--place B for B form-->
<input type="text" name="Name" placeholder ="enter your name"/>
<input type="text" name="Password" placeholder ="enter your name"/>
<input type="submit" value="Register Me!"/>
</form>

Controller

    [HttpPost]
public ActionResult YourRegisterAction(char formType, string name, string password)
{
if (formType == 'A')
bool success = BL.Server.Instance.SaveMyNewUserToDBTypeA(name, password);
else if (formType == 'B')
bool success = BL.Server.Instance.SaveMyNewUserToDBTypeB(name, password);

return View("ThankYou", success);
}

选项 2。使用模型。模型

        public class YourRegisterAction
{
public string Name { get; set; }
public string Password { get; set; }
public char FormType { get; set; }
}

景色

@model Domain.UI.Models
<form action='@Url.Action("YourRegisterAction", "controller")' >
@Html.HiddenFor(m=>m.FormType)
@Html.TextBoxFor(m=>m.Name)
@Html.TextBoxFor(m=>m.Password)
<input type="submit" value="Register Me!"/>
</form>

Controller

        [HttpPost]
public ActionResult YourRegisterAction(RegisterViewModel m)
{
if (m.FormType == 'A')
bool success = BL.Server.Instance.SaveMyNewUserToDBTypeA(m.Name, m.Password);
else if (m.FormType == 'B')
bool success = BL.Server.Instance.SaveMyNewUserToDBTypeB(m.Name, m.Password);

return View("ThankYou", success);
}

在您的 Controller 中提交表单之后。像往常一样坚持在数据库中。

另外请使用@using (Html.BeginForm) 而不是表单标签。您可以在此处找到大量相关信息。

关于c# - ASP.NET - 在一个注册表中注册的两种类型的用户?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31420611/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com