LoginForm の解決策を見つけたいです。
モデル (例: Doctor.cs) を AccountModel.cs (MVC アプリケーション セキュリティ - LogOn、Register、または ChangePassword) に参加させる方法を教えてください。
public ActionResult Register(RegisterModel model)
{
if (ModelState.IsValid)
{
// Attempt to register the user
MembershipCreateStatus createStatus;
Membership.CreateUser(model.UserName, model.Password, model.Email, "question", "answer", true, null, out createStatus);
if (createStatus == MembershipCreateStatus.Success)
{
MigrateShoppingCart(model.UserName);
FormsAuthentication.SetAuthCookie(model.UserName, false /* createPersistentCookie */);
return RedirectToAction("Index", "Home");
}
else
{
ModelState.AddModelError("", ErrorCodeToString(createStatus));
}
}
これはDoctor.csです
パブリック クラス ドキュメント {
public int DocId { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string DoktorArtUrl { get; set;
}
助けてください、私はそれが欲しいだけです acount を作成するとき、DBに新しいDoctorを作成し、MVC Securityに新しいユーザーを作成します。また、プロファイルビューを実行する方法を教えてください(セキュリティと組み合わされたDocsテーブルの値を表示します(ログイン後))
PS。私の英語でごめんなさい