0

私は Mvc を初めて使用し、Web アプリを作成していますが、問題が発生しています。私のアプリにはサインアップページがあり、指定された入力を検証する必要がありますが、現在のコードは以下のとおりです。

モデル

public class Account
{

    [Required(ErrorMessage = "User Name is required")]
    [StringLength(15, ErrorMessage = "First Name length Should be less than 50")]
    public virtual string UserName { get; set; }

    [Required(ErrorMessage = "Email Id is required")]
    [StringLength(35, ErrorMessage = "eMail Length Should be less than 35")]
    [RegularExpression(@"^\w+@[a-zA-Z_]+?\.[a-zA-Z]{2,3}$", ErrorMessage = "Email Id is not in proper format")]
    public virtual string EmailId { get; set; }

}

コントローラ

[HttpPost]
        public ActionResult SignUp(string userName,string email)
        {
            if (ModelState.IsValid)
            {
                try
                {
                    Account newAccount = new Account();
                    var userExist = newAccount.UserExist(userName);
                    if (userExist == 0)
                    {
                        AccountBL createAccount = new AccountBL();
                        createAccount.UserName = userName;
                        createAccount.EmailId = email;;
                        newAccount.SignUp(createAccount);
                        return View("Index");
                    }
                    else
                    {
                        return View();
                    }
                }
                catch
                {
                    return View();

                }
            }
            return View();
        }

意見

  @using (Html.BeginForm("SignUp", "Account", FormMethod.Post))
    {
        @Html.ValidationSummary(true)
        <div>
            <fieldset>
                <legend>Sign Up</legend>
                <table>

                    <tr>
                        <td>
                            @Html.Label("User Name")
                        </td>
                        <td>
                            @Html.TextBoxFor(account => account.UserName)
                            @Html.ValidationMessageFor(account => account.UserName)
                    </tr>
                    <tr>
                        <td>
                            @Html.Label("Email")
                        </td>
                        <td>
                             @Html.TextBoxFor(account => account.EmailId)
                            @Html.ValidationMessageFor(account => account.EmailId)
                        </td>
                    </tr>
                    <tr>
                        <td>
                            <input type="submit" name="btnSubmit" value="Sign Up" />
                        </td>
                    </tr>
                </table>
            </fieldset>
        </div>
    }

コードに問題が見つからないので、コードの問題点を指摘してください

4

1 に答える 1

0

post メソッドでモデルを返していないようです。ユーザー名とパスワードを文字列として渡す代わりに、ビューにバインドしたモデル タイプを渡してみてください。ポスト アクション メソッドのシグネチャは次のようになります。

public ActionResult SignUp(AccountModel model)
于 2013-05-14T07:23:32.857 に答える