0

在浏览器中禁用 javascript 时,asp.net mvc 服务器端验证?我在我的模态类中使用了“远程”,它仅在启用 javascript 时验证它在禁用 javascript 时不验证。

我的问题的场景是我的数据库中有一个表,其中有一列“代码”,数据类型为 varchar。任何人插入他们必须插入唯一代码的数据。请帮帮我

4

1 回答 1

2

我建议忘记,remote因为如果您使用的是代码优先实体框架,那么您的表中不能有超过一unique列。我会像这样为它编写代码:

[HttpPost]
[AllowAnonymous]
[ValidateAntiForgeryToken]
public ActionResult Register(RegisterModel model)
{
    if (ModelState.IsValid)
    {
        // Insert a new user into the database
        using (UsersContext db = new UsersContext())
        {
            UserProfile email = db.UserProfiles.FirstOrDefault(u => u.Email.ToLower() == model.Email.ToLower());
            try
            {
                // Check if email already exists
                if (email == null)
                {
                    WebSecurity.CreateUserAndAccount(model.UserName, model.Password, new { Email = model.Email });
                    WebSecurity.Login(model.UserName, model.Password);
                    return RedirectToAction("Index", "Home");
                }
                else
                {
                    ModelState.AddModelError("Email", "Email address already exists. Please enter a different email address.");
                }
            }
            catch (MembershipCreateUserException e)
            {

                ModelState.AddModelError("", ErrorCodeToString(e.StatusCode));
            }
        }
    }

将电子邮件替换为您要验证的属性。在发布时,这将与数据库中已存在的条目进行比较,并根据结果为您提供反馈。如果存在此类数据,则引发异常。

于 2013-02-13T07:51:12.657 回答