溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

MVC4制作網(wǎng)站中怎樣開發(fā)用戶修改資料

發(fā)布時間:2021-09-16 16:36:07 來源:億速云 閱讀:99 作者:柒染 欄目:開發(fā)技術(shù)

MVC4制作網(wǎng)站中怎樣開發(fā)用戶修改資料,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。

一、用戶 
1.1用戶注冊 
1.2用戶登錄 
1.3修改密碼 
1.4修改資料 

在用戶登陸成功后要跳轉(zhuǎn)到一個頁面,暫且叫做用戶中心吧。在【UserController】添加[default] action 

[UserAuthorize]
 public ActionResult Default()
 {
  userRsy = new UserRepository();
  var _user = userRsy.Find(UserName);
  return View(_user);
 }

添加相應(yīng)對應(yīng)強(qiáng)類型視圖 

@model Ninesky.Models.User
@{
 ViewBag.Title = "首頁";
 Layout = "~/Views/Layout/_User.cshtml";
}

<div class="leftnav">這里左側(cè)導(dǎo)航列表</div>
<div class="workspace">
 <div class ="Nav">您現(xiàn)在的位置: 用戶首頁</div>
 <div>@Model.UserName
 <br />
 @Model.GroupId
 </div>
</div>

現(xiàn)在要把左側(cè)導(dǎo)航列表做出來,在視圖的User文件夾上點右鍵新建局部視圖PartialPersonalNav

MVC4制作網(wǎng)站中怎樣開發(fā)用戶修改資料

<ul>
 <li>@Html.ActionLink("用戶首頁","Default","User")</li>
 <li>@Html.ActionLink("修改信息","ChangeInfo","User")</li>
 <li>@Html.ActionLink("修改密碼","ChangePassword","User")</li>
 <li>@Html.ActionLink("退出系統(tǒng)","Logout","User")</li>
</ul>

將default.cshtml中“這里左側(cè)導(dǎo)航列表”替換為@Html.Partial("PartialPersonalNav")。瀏覽器中打開,導(dǎo)航列表顯示出來了。 

MVC4制作網(wǎng)站中怎樣開發(fā)用戶修改資料

現(xiàn)在開始做修改用戶資料了。在【UserController】添加[ChangeInfo] action 

[UserAuthorize]
 public ActionResult ChangeInfo()
 {
  userRsy = new UserRepository();
  var _user = userRsy.Find(UserName);
  return View(_user);
 }

添加修改資料的處理 action

[HttpPost]
 [UserAuthorize]
 public ActionResult ChangeInfo(User user)
 {
  userRsy = new UserRepository();
  if(userRsy.Authentication(UserName,Ninesky.Common.Text.Sha256(user.Password))==0)
  {
  var _user = userRsy.Find(UserName);
  _user.Gender = user.Gender;
  _user.Email = user.Email;
  _user.QQ = user.QQ;
  _user.Tel = user.Tel;
  _user.Address = user.Address;
  _user.PostCode = user.PostCode;
  if (userRsy.Update(_user))
  {
   Notice _n = new Notice { Title = "修改資料成功", Details = "您已經(jīng)成功修改資料!", DwellTime = 5, NavigationName = "用戶首頁", NavigationUrl = Url.Action("Default", "User") };
   return RedirectToAction("UserNotice", "Prompt", _n);
  }
  else
  {
   Error _e = new Error { Title = "修改資料失敗", Details = "在修改用戶資料時時,更新的資料未能保存到數(shù)據(jù)庫", Cause = "系統(tǒng)錯誤", Solution = Server.UrlEncode("<li>返回<a href='" + Url.Action("ChangeInfo", "User") + "'>修改資料</a>頁面,輸入正確的信息后重新操作</li><li>聯(lián)系網(wǎng)站管理員</li>") };
   return RedirectToAction("UserError", "Prompt", _e);
  }
  }
  else
  {
  ModelState.AddModelError("Password","密碼錯誤!");
  return View();
  }
  
  
 }

aciton上右鍵添加強(qiáng)類型視圖,修改視圖里自動生成代碼,完成后。如下: 

MVC4制作網(wǎng)站中怎樣開發(fā)用戶修改資料

@model Ninesky.Models.User

@{
 ViewBag.Title = "修改個人資料";
 Layout = "~/Views/Layout/_User.cshtml";
}

<div class="leftnav">@Html.Partial("PartialPersonalNav")</div>
<div class="workspace">
 <div class="Nav">您現(xiàn)在的位置: 用戶首頁</div>
 <div>
 @using (Html.BeginForm())
 {
  @Html.ValidationSummary(true)

  <fieldset>
  <legend>修改資料</legend>
  @Html.HiddenFor(model => model.UserId)
  <ul>
   <li>
   <div class="editor-label">
    @Html.LabelFor(model => model.UserName)
   </div>
   <div class="editor-field">
    @Html.DisplayFor(model => model.UserName)
   </div>
   </li>
   <li>
   <div class="editor-label">
    @Html.LabelFor(model => model.Password)
   </div>
   <div class="editor-field">
    @Html.Password("Password")
    @Html.ValidationMessageFor(model => model.Password)
    輸入正確的密碼才能修改資料。
   </div>
   </li>
   <li>
   <div class="editor-label">
    @Html.LabelFor(model => model.Gender)
   </div>
   <div class="editor-field">
    @Html.RadioButtonFor(model => model.Gender, 0) 男
   @Html.RadioButtonFor(model => model.Gender, 1) 女
   @Html.RadioButtonFor(model => model.Gender, 2) 保密
   </div>
   </li>
   <li>
   <div class="editor-label">
    @Html.LabelFor(model => model.Email)
   </div>
   <div class="editor-field">
    @Html.EditorFor(model => model.Email)
    @Html.ValidationMessageFor(model => model.Email)
    @Html.DisplayDescriptionFor(model => model.Email)
   </div>
   </li>
   <li>
   <div class="editor-label">
    @Html.LabelFor(model => model.QQ)
   </div>
   <div class="editor-field">
    @Html.EditorFor(model => model.QQ)
    @Html.ValidationMessageFor(model => model.QQ)
    @Html.DisplayDescriptionFor(model => model.QQ)
   </div>
   </li>
   <li>
   <div class="editor-label">
    @Html.LabelFor(model => model.Tel)
   </div>
   <div class="editor-field">
    @Html.EditorFor(model => model.Tel)
    @Html.ValidationMessageFor(model => model.Tel)
    @Html.DisplayDescriptionFor(model => model.Tel)
   </div>
   </li>
   <li>
   <div class="editor-label">
    @Html.LabelFor(model => model.Address)
   </div>
   <div class="editor-field">
    @Html.EditorFor(model => model.Address)
    @Html.ValidationMessageFor(model => model.Address)
    @Html.DisplayDescriptionFor(model => model.Address)
   </div>
   </li>
   <li>
   <div class="editor-label">
    @Html.LabelFor(model => model.PostCode)
   </div>
   <div class="editor-field">
    @Html.EditorFor(model => model.PostCode)
    @Html.ValidationMessageFor(model => model.PostCode)
    @Html.DisplayDescriptionFor(model => model.PostCode)
   </div>
   </li>
   <li><input type="submit" value="修改" /></li>
  </ul>
  </fieldset>
 }
 </div>
</div>

@section Scripts {
 @Scripts.Render("~/bundles/jqueryval")
}

運行一下看

 MVC4制作網(wǎng)站中怎樣開發(fā)用戶修改資料

輸入資料測試一下。能夠正常保存到數(shù)據(jù)庫。 

看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進(jìn)一步的了解或閱讀更多相關(guān)文章,請關(guān)注億速云行業(yè)資訊頻道,感謝您對億速云的支持。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI