APS.NET MVC 分頁和排序,自己練習

来源:http://www.cnblogs.com/caofangsheng/archive/2016/04/29/5446513.html
-Advertisement-
Play Games

首先實體是: using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Web; namespace Pag ...


   首先實體是: ---------------------------------------------------------------------------------------------------------------------------------------------------------- using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Web;   namespace PagingAndSortingInMvc.Entities {     public class EmployeeMaster     {         [Key]         public string ID { get; set; }           [Required(ErrorMessage="請輸入員工名字")]         public string Name { get; set; }           [Required(ErrorMessage="請輸入手機號碼")]         public string PhoneNumber { get; set; }           [Required(ErrorMessage="請輸入Email")]         public string Email { get; set; }           [Required(ErrorMessage= "請輸入薪水")]         public decimal Salary { get; set; }         } }   ------------------------------------------------------------------------------------------------------------------------------------------------------------   然後控制器的方法:   using PagedList; using PagingAndSortingInMvc.Entities; using PagingAndSortingInMvc.Models; using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc;   namespace PagingAndSortingInMvc.Controllers {     public class EmployeeController : Controller     {           #region 列表分頁展示         /// <summary>         /// 列表分頁展示         /// </summary>         /// <param name="sortOrder">按照什麼排序</param>         /// <param name="currentSort">當前排序是</param>         /// <param name="page">第幾頁</param>         /// <returns></returns>         public ActionResult Index(string sortOrder, string currentSort, int? page)         {             ApplicationDbContext db = new ApplicationDbContext();             int pageSize = 10;  //每頁10條             int pageIndex = 1; //當前頁預設設置為1             pageIndex = page.HasValue ? Convert.ToInt32(page) : 1;   //判斷可控對象是否有值             ViewBag.CurrentSort = sortOrder;             sortOrder = string.IsNullOrEmpty(sortOrder) ? "Name" : sortOrder;   //如果sortOrder為空,就設置為Name,下麵設置的時候,預設按照名稱排序             IPagedList<EmployeeMaster> employees = null;               switch (sortOrder)             {                 case "Name":                     if (sortOrder.Equals(currentSort))                     {                         employees = db.Employees.OrderByDescending(m => m.Name).ToPagedList(pageIndex, pageSize);  //降序OrderByDescending                     }                     else                     {                         employees = db.Employees.OrderBy(m => m.Name).ToPagedList(pageIndex, pageSize);                     }                     break;                   case "PhoneNumber":                     if (sortOrder.Equals(currentSort))                     {                           employees = db.Employees.OrderByDescending(m => m.PhoneNumber).ToPagedList(pageIndex, pageSize);                     }                     else                     {                         employees = db.Employees.OrderBy(m => m.PhoneNumber).ToPagedList(pageIndex, pageSize);                     }                       break;                   case "Email":                     if (sortOrder.Equals(currentSort))                     {                         employees = db.Employees.OrderByDescending(m => m.Email).ToPagedList(pageIndex, pageSize);                     }                     else                     {                         employees = db.Employees.OrderBy(m => m.Email).ToPagedList(pageIndex, pageSize);                     }                     break;                   case "Salary":                     if (sortOrder.Equals(currentSort))                     {                         employees = db.Employees.OrderByDescending(m => m.Salary).ToPagedList(pageIndex, pageSize);                     }                     else                     {                         employees = db.Employees.OrderBy(m => m.Salary).ToPagedList(pageIndex, pageSize);                     }                     break;                   default:                     if (sortOrder.Equals(currentSort))                     {                         employees = db.Employees.OrderByDescending(m => m.Name).ToPagedList(pageIndex, pageSize);  //降序OrderByDescending                     }                     else                     {                         employees = db.Employees.OrderBy(m => m.Name).ToPagedList(pageIndex, pageSize);                     }                       break;             }                   return View(employees);         }          #endregion             /// <summary>         /// 添加的思路:首先一個空白的表單,讓用戶輸入,然後點擊點擊,就Post提交到伺服器         /// </summary>         /// <returns></returns>         public ActionResult Add()         {             return View();         }           [HttpPost]         [ValidateAntiForgeryToken]    //防止跨站點攻擊需要加的特性標識ValidateAntiForgeryToken         public ActionResult Add(EmployeeMaster model)         {             model.ID = Guid.NewGuid().ToString();               ApplicationDbContext db = new ApplicationDbContext();             db.Employees.Add(model);             db.SaveChanges();             return RedirectToAction("Index");         }     } }   --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 視圖Add:[不是重點] @model PagingAndSortingInMvc.Entities.EmployeeMaster   @{     ViewBag.Title = "Add"; }   <h2>Add</h2>     @using (Html.BeginForm())  {     @Html.AntiForgeryToken()       <div class="form-horizontal">         <h4>EmployeeMaster</h4>         <hr />         @Html.ValidationSummary(true, "", new { @class = "text-danger" })         <div class="form-group">             @Html.LabelFor(model => model.Name, htmlAttributes: new { @class = "control-label col-md-2" })             <div class="col-md-10">                 @Html.EditorFor(model => model.Name, new { htmlAttributes = new { @class = "form-control" } })                 @Html.ValidationMessageFor(model => model.Name, "", new { @class = "text-danger" })             </div>         </div>           <div class="form-group">             @Html.LabelFor(model => model.PhoneNumber, htmlAttributes: new { @class = "control-label col-md-2" })             <div class="col-md-10">                 @Html.EditorFor(model => model.PhoneNumber, new { htmlAttributes = new { @class = "form-control" } })                 @Html.ValidationMessageFor(model => model.PhoneNumber, "", new { @class = "text-danger" })             </div>         </div>           <div class="form-group">             @Html.LabelFor(model => model.Email, htmlAttributes: new { @class = "control-label col-md-2" })             <div class="col-md-10">                 @Html.EditorFor(model => model.Email, new { htmlAttributes = new { @class = "form-control" } })                 @Html.ValidationMessageFor(model => model.Email, "", new { @class = "text-danger" })             </div>         </div>           <div class="form-group">             @Html.LabelFor(model => model.Salary, htmlAttributes: new { @class = "control-label col-md-2" })             <div class="col-md-10">                 @Html.EditorFor(model => model.Salary, new { htmlAttributes = new { @class = "form-control" } })                 @Html.ValidationMessageFor(model => model.Salary, "", new { @class = "text-danger" })             </div>         </div>           <div class="form-group">             <div class="col-md-offset-2 col-md-10">                 <input type="submit" value="Create" class="btn btn-default" />             </div>         </div>     </div> }   <div>     @Html.ActionLink("Back to List", "Index") </div>   @section Scripts {     @Scripts.Render("~/bundles/jqueryval") }   ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 視圖Index【重點理解】   @model PagedList.IPagedList<PagingAndSortingInMvc.Entities.EmployeeMaster> @using PagedList.Mvc; <style>     table {         width: 100%;     }           table tr td {             border: 2px solid black;             text-align: center;             word-wrap: break-word;         }           table tr:hover {             background-color: #000;             color: #fff;         }           table tr th {             border: 2px solid black;             text-align: center;             background-color: #fff;             color: #000;         } </style>   <h2>Employee List</h2> @using (Html.BeginForm()) {     <table>         <tr>             <th>                 @Html.ActionLink("Employee Name", "Index", "Employee",                       特別註意:這裡的超鏈接,不能帶控制器,帶了,sortOrder 和CurrentSort參數就傳遞不到Action方法 new { sortOrder = "Name", currentSort = ViewBag.CurrentSort })         sortOrder 和currentSort 是對應控制器Index方法的兩個參數,大小寫無所謂         </th>           <th>             @Html.ActionLink("PhoneNumber", "Index", new { sortOrder = "PhoneNumber", currentSort = ViewBag.CurrentSort })     </th>       <th>         @Html.ActionLink("Email", "Index",                  new { sortOrder = "Email", currentSort = ViewBag.CurrentSort }) </th>   <th>     @Html.ActionLink("Salary", "Index",                          new { sortOrder = "Salary", currentSort = ViewBag.CurrentSort }) </th> </tr>         @foreach (var item in Model)         {           <tr>              <td>@item.Name</td>                                /// @item.Name和@Html.DisplayFor(m=>item.Email)都可以              <td>@item.PhoneNumber</td>              <td>@Html.DisplayFor(m=>item.Email)</td>              <td>@Html.DisplayFor(m=>item.Salary)</td>          </tr>         } </table>     <br/>       <div id="Paging" style="text-align:center">         Page @(Model.PageCount<Model.PageNumber?0:Model.PageNumber) of @Model.PageCount                      PageNumber當前頁           @Html.PagedListPager(Model, page => Url.Action("Index", new { page}))       </div> }   ------------------------------------------------------------------------------------   擴展: @Html.PagedListPager(Model, page => Url.Action("Index", new { page}),PagedListRenderOptions.ClassicPlusFirstAndLast)        @Html.ActionLink("Employee Name", "Index", "Employee",                       特別註意:這裡的超鏈接,不能帶控制器,帶了,sortOrder 和CurrentSort參數就傳遞不到Action方法 new { sortOrder = "Name", currentSort = ViewBag.CurrentSort })         sortOrder 和currentSort 是對應控制器Index方法的兩個參數,大小寫無所謂      
您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 這是一個silverlight游戲:http://keleyi.com/keleyi/phtml/silverlight/ 接了個單子,非要用Silverlight 5來作一個項目,之前從來沒接觸過這東西,為了工作,硬著頭皮也要上了。摸索了一晚上,大至整理出一些項目中需要的東西,以下作為初探記錄:S ...
  • 1.客戶端設計 分配appkey及ApiSecret給調用客戶端,客戶端拼接字元串 string strkey = String.Format("{0}{1}{2}", ApiKey, Timestamp, ApiSecret); 然後對strkey 進行md5加密生存簽名Signature。將Ap ...
  • 在ASP.NET項目中使用了IIS伺服器,由於系統是XP的,而在裝系統的時候IIS沒有一起裝,所以從網上下載的IIS5.0版本(其它版本XP是用不了的)。但是在使用的過程中老是出問題,每次調試好後,過幾天再打開就運行不了。然後又去調試、安裝,因此把我遇到的幾次問題和解決方法總結如下。1、本地網址訪問 ...
  • 類的代碼: 調用: 轉自:http://hovertree.com/h/bjaf/jhvb7drd.htm 推薦:http://www.cnblogs.com/roucheng/p/3521864.html ...
  • 本著簡潔直接,我們就直奔主題吧,這裡需要使用到一個網頁線上截圖插件imgareaselect(請自行下載)。 前臺頁面: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <link rel="stylesheet" href="css/img ...
  • 程式的編譯和運行,總得來說大體是:首先寫好的程式是源代碼,然後編譯器編譯為本地機器語言,最後在本地操作系統運行。 下圖為傳統代碼編譯運行過程: .NET的編譯和運行過程與之類似,首先編寫好的源代碼,然後編譯為微軟中間語言代碼,運行的時候即時編譯為本地機器語言,同時.NET代碼運行時有一個CLR環境來 ...
  • 話說筆者接觸.net 已有些年頭,做過的項目也有不少,有幾百萬的,也有幾十萬的,有C/S的,也有B/S的。感覺幾年下來,用過的框架不少,但是.net的精髓一直沒有掌握。就像學武之人懂得各種招式,但內功心法還是沒能參透。於是乎打算重新拾起基礎書籍複習一下。說是複習,其實有一部分在項目中不常用的知識還是 ...
  • 最近使用Winform做一個小系統,由於需要保存一些預設配置項。自然就想到了輕量級的配置文件類型ini。在此也分享和記錄一下實現方式,方便以後查詢和使用。 廢話不多說上代碼: 實現公共函數↓ 調用實例↓ 初始化判斷是否存在配置,否則創建文件↓ ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...