多くのsimulairの質問が見つかりましたが、うまく機能しているクリーンなソリューションではありません。これを機能させるためのカスタム コードがたくさんありますが、それはなぜですか? これは最初から機能しないはずですか?
私が奇妙だと思うのは、IE9 では機能するが、Firefox と Chrome では機能しないということです。FirefoxまたはChromeで試行するたびに、「誕生日は日付でなければなりません」というメッセージが表示されます。
新しい MVC 4 RTM プロジェクトで以下のコードを試してみると、うまくいきません。すべてのブラウザで DateTime.Now のデフォルトが dd-MM-yyyy (オランダ) になっていますが、Firefox と Chrome では送信できません。
グローバリゼーション タグは web.config に設定されていないため、既定値を使用する必要があります。私はオランダ出身なので、私が推測するクライアント文化を得る必要があります.
public class RegisterModel
{
[Required]
[Display(Name = "User name")]
public string UserName { get; set; }
[Required]
[DisplayFormat(DataFormatString = "{0:d}", ApplyFormatInEditMode = true)]
//[DataType(DataType.Date)]
public DateTime Birthday { get; set; }
}
[AllowAnonymous]
public ActionResult Register()
{
RegisterModel vm = new RegisterModel()
{
Birthday = DateTime.Now
};
return View(vm);
}
[HttpPost]
[AllowAnonymous]
[ValidateAntiForgeryToken]
public ActionResult Register(RegisterModel model)
{
if (ModelState.IsValid)
{
// Attempt to register the user
try
{
//WebSecurity.CreateUserAndAccount(model.UserName, model.Password);
//WebSecurity.Login(model.UserName, model.Password);
return RedirectToAction("Index", "Home");
}
catch (MembershipCreateUserException e)
{
ModelState.AddModelError("", ErrorCodeToString(e.StatusCode));
}
}
// If we got this far, something failed, redisplay form
return View(model);
}
マークアップ
<!-- language: lang-none -->
@model DateTimeWithDatePicker.Models.RegisterModel
@{
ViewBag.Title = "Register";
}
<hgroup class="title">
<h1>@ViewBag.Title.</h1>
<h2>Create a new account.</h2>
</hgroup>
@using (Html.BeginForm()) {
@Html.AntiForgeryToken()
@Html.ValidationSummary()
<fieldset>
<legend>Registration Form</legend>
<ol>
<li>
@Html.LabelFor(m => m.UserName)
@Html.TextBoxFor(m => m.UserName)
</li>
<li>
@Html.LabelFor(m => m.Birthday)
@Html.EditorFor(m => m.Birthday)
</li>
</ol>
<input type="submit" value="Register" />
</fieldset>
}
@section Scripts {
@Scripts.Render("~/bundles/jqueryval")
}