Asp.net MVC3 WebGrid查询绑定

 属性解释

  1 DataSource 获取绑定到的WebGrid的数据源

  2 TotalRowCount 获取绑定到WebGrid的数据总行数

  3 PageIndex 获取WebGrid总页数

  4 SortDirection 获取或者设置WebGrid的排序方向

  5 SelectedIndex 获取WebGrid的选择行的index

public ActionResult Gridview()
2         {
3             DALDataContext da = new DALDataContext();
4             var result =da.T_STUDENTs.ToList();
5             this.ViewData.Model = result;
6             return View();
7         }

1 @using MVC3Tutorial;
2 @model List<T_STUDENT>
3 @{
4     View.Title = "Gridview";
5     Layout = "~/Views/Shared/_Layout.cshtml";
6 }
7
8 @{
9     var grid = new WebGrid(source:Model,
10     fieldNamePrefix:"grid_",
11     defaultSort: "StudentName",
12     canPage:true,
13     canSort:true,
14     ajaxUpdateContainerId:"DivGrid",
15     pageFieldName:"paging",
16     sortFieldName:"sortField",
17     rowsPerPage:10);
18
19     <div id="DivGrid">
20     @grid.GetHtml(
21         columns:grid.Columns(
22             grid.Column("StudentID", "Student ID"),
23             grid.Column("StudentName", "Student Name"),
24             grid.Column("StudentCode", "Student Code"),
25             grid.Column("Sex", "Sex"),
26             grid.Column("NRICPassport", "NRIC/Passport No.")
27         )
28     )
29     </div>
30     <h2>
31     Page Count:
32     @Html.Encode(grid.PageCount)
33     <br/>
34     Total Record:
35     @Html.Encode(grid.TotalRowCount)
36     </h2>
37     @Html.Encode(grid.FieldNamePrefix)
38 }

时间: 2024-10-11 17:06:43

Asp.net MVC3 WebGrid查询绑定的相关文章

ASP.NET MVC3 系列教程 - 模型

I:基础绑定的实现 1.在前面的两篇基础文章(路由 及 控制器&视图)当中,还没对QueryString的绑定进行介绍,因为我觉得它更适合放在这一章节中去介绍.我们在用WebForm去开发的时候,有时候会利用到QueryString去做一些功能如:http://localhost/First/QueryString.aspx?Sort=Desc,在MVC中,它的实现有两种方式: 控制器代码 public class QueryStringController : Controller { pub

ASP.NET MVC3 实例(六) 增加、修改和删除操作(二)

http://www.jquery001.com/asp.net-mvc3-instance-add-update-delete2.html 上篇我们在 ASP.NET MVC3 中实现了添加操作,由于时间关系没有完成修改.删除操作,我们新建了一个名为"Contact"的 Controller,并实现了添加方法,下边就让我们在此基础上来完成 ASP.NET MVC3 中的修改和删除操作. 首先,我们在 Contact 控制器类中添加一个名为 View()的方法,用来从 Contact

[ASP.NET MVC3] Razor Chart的使用总结

ASP.NET3为我们带来了很多新特性,其中ChartHelper相当给力,介绍一下程序集里图表的功能,这个chart使用简单,且前台不需引用js脚本文件,可使用缓存文件,数据源方式很多,比较方便. 图表的类型有以下很多种:   成员名称 说明   Point 点图类型.   FastPoint 快速点图类型.   Bubble 气泡图类型.   Line 折线图类型.   Spline 样条图类型.   StepLine 阶梯线图类型.   FastLine 快速扫描线图类型.   Bar 条

asp.net mvc3 数据验证(三)—自定义数据注解

原文:asp.net mvc3 数据验证(三)-自定义数据注解         前两节讲的都是asp.net mvc3预先设定的数据注解,但是系统自由的数据注解肯定不适合所有的场合,所以有时候我们需要自定义数据注解. 自定义数据注解有两种,一种是直接写在模型对象中,这样做的好处是验证时只需要关心一种模型对象的验证逻辑,缺点也是显而易见的,那就是不能重用. 还有一种是封装在自定义的数据注解中,优点是可重用,缺点是需要应对不同类型的模型. 现在我们以封装在自定义数据注解中的方法为例看下如何在asp.

asp.net MVC3 + JQuery 的ajax简单使用

一直都没有使用过JQuery,更没使用过JQuery的ajax支持带来的方便,今天试了一下,真是减少了很多工作量,使用方法也比较简单 这里先记下来,以后使用时可以再拿着用. 本应用中,本来是准备使用长链接的方式,在server端有错误消息产生时,能实时返回错误消息.可在使用长链接时,因为.net功底 不够,以失败告终!所以采用了javascript中间隔查询的方法. 页面代码如下: Java代码   @{ ViewBag.Title = "ErrorMonitor"; } <sc

在ASP.NET MVC3项目中,自定义404错误页面

在Web开发中,用户体验是至关重要的,一个友好的网站自然少不了自定义404错误页面. 让笔者为大家介绍404错误页面在ASP.NET MVC3项目中的配置: 第一步,在项目的Web.config文件中找到节点<system.web> 在此节点下添加配置        <customErrors mode="On" defaultRedirect="~/Index/Error404">          <error statusCode

ASP.NET MVC3升级到ASP.NET MVC4 的方法

ASP.NET MVC3升级 ASP.NET MVC4 的方法: 1.先去掉引用的System.Web.Mvc.dll(MVC3版本),重新引入System.Web.Mvc.dll(MVC4版本) 2.替换项目 Web.config 中的 System.Web.Mvc, Version=3.0.0.0 System.Web.WebPages, Version=1.0.0.0 System.Web.Helpers, Version=1.0.0.0 System.Web.WebPages.Razor

ASP.NET MVC WebGrid &ndash; Performing true AJAX pagination and sorting 【转】

ASP.NET MVC WebGrid – Performing true AJAX pagination and sorting FEBRUARY 27, 2012 14 COMMENTS WebGrid is a very powerful HTML helper component introduced with ASP.NET MVC 3 and ASP.NET Web Pages. Despite all its cool features, it is troublesome to

ASP.NET MVC3 系列教程 – 新的Layout布局系统

原文地址:http://www.cnblogs.com/highend/archive/2011/04/18/asp_net_mvc3_layout.html I:回忆MVC2当中MasterPage那些事 code: <!------------Begin--------------> <!-- Master文件 --> <%@ Master Language="C#" Inherits="System.Web.Mvc.ViewMasterPa