一起谈.NET技术,ASP.NET MVC2实现分页和右键菜单

简介:   右键菜单非常方便,很多时候会用到。这篇文章将使用一个JQUERY的插件在asp.net mvc中实现右键菜单。本文还将介绍一下在asp.net mvc中如何实现简单的分页。效果如下图:  首先,下载此插件。

  右键菜单非常方便,很多时候会用到。这篇文章将使用一个JQUERY的插件在asp.net mvc中实现右键菜单。本文还将介绍一下在asp.net mvc中如何实现简单的分页。效果如下图:

  首先,下载此插件

  新建一个asp.net mvc应用程序。将此插件放入Scripts文件夹。并在页面上引用。

  这个demo使用到NORTHWND数据库的Product表。

  定义右键菜单:

 
 
< div class ="contextMenu" id ="myMenu1" >
< ul >
< li id ="detail" >< img src ="http://www.cnblogs.com/Content/detail.ico" /> detail </ li >
< li id ="new" >< img src ="http://www.cnblogs.com/Content/new.ico" /> new </ li >
< li id ="delete" > < img src ="http://www.cnblogs.com/Content/delete.ico" /> delete </ li >
< li id ="modify" >< img src ="http://www.cnblogs.com/Content/modify.ico" /> modify </ li >
</ ul >
</ div >

  将此菜单定义在产品名上,故在在产品名上添加一个class供jquery选择。

 
 
< td class ="showContext" id ="<%= item.ProductID %>" > <% : item.ProductName %> </ td >

  在页面上插入下面脚本。用于绑定菜单项的行为。为了简单起见,将所以的菜单项的行为都定义成导航到详情页面。

 
 
< script type ="text/javascript" >
$(document).ready(
function () {
$(
' td.showContext ' ).contextMenu( ' myMenu1 ' , {
bindings: {
' detail ' : function (t) {
document.location.href
= ' /Products/Detail/ ' + t.id;
},
' new ' : function (t) {
document.location.href
= ' /Products/Detail/ ' + t.id;
},
' delete ' : function (t) {
confirm(
" 你确定删除吗? " );
document.location.href
= ' /Products/Detail/ ' + t.id;
},
' modify ' : function (t) {
document.location.href
= ' /Products/Detail/ ' + t.id;
}
}
});
});
</ script >

  这样就非常简单的实现了右键菜单的功能。

  下面说下实现简单的分页。asp.net mvc中分页非常简单。

  看下面定义的table的html代码:

 
 
< table >
< tr >
< th >
ProductName
</ th >
< th >
SupplierID
</ th >
< th >
CategoryID
</ th >
< th >
QuantityPerUnit
</ th >
< th >
UnitPrice
</ th >
< th >
UnitsInStock
</ th >
< th >
UnitsOnOrder
</ th >
< th >
ReorderLevel
</ th >
< th >
Discontinued
</ th >
</ tr >

<% foreach (var item in Model.Products)
{
%>
< tr >
< td class ="showContext" id ="<%= item.ProductID %>" > <% : item.ProductName %> </ td >
< td >
<% : item.SupplierID %>
</ td >
< td >
<% : item.CategoryID %>
</ td >
< td >
<% : item.QuantityPerUnit %>
</ td >
< td >
<% : String .Format( " {0:F} " , item.UnitPrice) %>
</ td >
< td >
<% : item.UnitsInStock %>
</ td >
< td >
<% : item.UnitsOnOrder %>
</ td >
< td >
<% : item.ReorderLevel %>
</ td >
< td >
<% : item.Discontinued %>
</ td >
</ tr >
<% } %>
</ table >

  我们只要在这个table下面插入一段分页的HTML脚本就行了。分页的脚本当然要生成,使用Htmlhelper的扩展方法去生成这个脚本。看下面的扩展方法,非常的简单的生成了分页的html代码:

 
 
public static string Pager( this HtmlHelper helper, int currentPage, int currentPageSize, int totalRecords, string urlPrefix)
{
StringBuilder sb1
= new StringBuilder();

int seed = currentPage % currentPageSize == 0 ? currentPage : currentPage - (currentPage % currentPageSize);

if (currentPage > 0 )
sb1.AppendLine(String.Format(
" <a href=\ " { 0 } / { 1 }\ " >Previous</a> " , urlPrefix, currentPage));

if (currentPage - currentPageSize >= 0 )
sb1.AppendLine(String.Format(
" <a href=\ " { 0 } / { 1 }\ " >...</a> " , urlPrefix, (currentPage - currentPageSize) + 1 ));

for ( int i = seed; i < Math.Round((totalRecords / 10 ) + 0.5 ) && i < seed + currentPageSize; i ++ )
{
sb1.AppendLine(String.Format(
" <a href=\ " { 0 } / { 1 }\ " >{1}</a> " , urlPrefix, i + 1 ));
}

if (currentPage + currentPageSize <= (Math.Round((totalRecords / 10 ) + 0.5 ) - 1 ))
sb1.AppendLine(String.Format(
" <a href=\ " { 0 } / { 1 }\ " >...</a> " , urlPrefix, (currentPage + currentPageSize) + 1 ));

if (currentPage < (Math.Round((totalRecords / 10 ) + 0.5 ) - 1 ))
sb1.AppendLine(String.Format(
" <a href=\ " { 0 } / { 1 }\ " >Next</a> " , urlPrefix, currentPage + 2 ));

return sb1.ToString();
}

  然后在table后面添加下面的代码,在table下面输出分页的html代码:

 
 
< div class ="pager" >
<% = Html.Pager(Model.CurrentPage, Model.TotalPages,Model.TotalItems , " /Products/List " ) %>
</ div >

  这样就完成分页和右键菜单的功能了。是不是非常的简单呢。:)

  效果:

  显示:

  如果有兴趣可以下载代码。

  总结:在asp.net mvc中实现右键菜单和简单的分页。

  代码http://cid-aef1e64945224a20.office.live.com/self.aspx/.Public/ContextMenuDemo.rar

目录
相关文章
|
2月前
|
开发框架 JavaScript .NET
asp.net中条件查询+分页
asp.net中条件查询+分页
16 1
|
10天前
|
开发框架 前端开发 JavaScript
JavaScript云LIS系统源码ASP.NET CORE 3.1 MVC + SQLserver + Redis医院实验室信息系统源码 医院云LIS系统源码
实验室信息系统(Laboratory Information System,缩写LIS)是一类用来处理实验室过程信息的软件,云LIS系统围绕临床,云LIS系统将与云HIS系统建立起高度的业务整合,以体现“以病人为中心”的设计理念,优化就诊流程,方便患者就医。
18 0
|
2月前
|
开发框架 前端开发 .NET
进入ASP .net mvc的世界
进入ASP .net mvc的世界
32 0
|
2月前
mvc.net分页查询案例——mvc-paper.css
mvc.net分页查询案例——mvc-paper.css
5 0
|
2月前
|
开发框架 中间件 .NET
C# .NET面试系列七:ASP.NET Core
## 第一部分:ASP.NET Core #### 1. 如何在 controller 中注入 service? 在.NET中,在ASP.NET Core应用程序中的Controller中注入服务通常使用<u>依赖注入(Dependency Injection)</u>来实现。以下是一些步骤,说明如何在Controller中注入服务: 1、创建服务 首先,确保你已经在应用程序中注册了服务。这通常在Startup.cs文件的ConfigureServices方法中完成。例如: ```c# services.AddScoped<IMyService, MyService>(); //
72 0
|
2月前
|
开发框架 前端开发 .NET
C# .NET面试系列六:ASP.NET MVC
<h2>ASP.NET MVC #### 1. MVC 中的 TempData\ViewBag\ViewData 区别? 在ASP.NET MVC中,TempData、ViewBag 和 ViewData 都是用于在控制器和视图之间传递数据的机制,但它们有一些区别。 <b>TempData:</b> 1、生命周期 ```c# TempData 的生命周期是短暂的,数据只在当前请求和下一次请求之间有效。一旦数据被读取,它就会被标记为已读,下一次请求时就会被清除。 ``` 2、用途 ```c# 主要用于在两个动作之间传递数据,例如在一个动作中设置 TempData,然后在重定向到另
101 5
|
4月前
|
开发框架 前端开发 .NET
ASP.NET CORE 3.1 MVC“指定的网络名不再可用\企图在不存在的网络连接上进行操作”的问题解决过程
ASP.NET CORE 3.1 MVC“指定的网络名不再可用\企图在不存在的网络连接上进行操作”的问题解决过程
45 0
|
9月前
|
存储 开发框架 前端开发
[回馈]ASP.NET Core MVC开发实战之商城系统(五)
经过一段时间的准备,新的一期【ASP.NET Core MVC开发实战之商城系统】已经开始,在之前的文章中,讲解了商城系统的整体功能设计,页面布局设计,环境搭建,系统配置,及首页【商品类型,banner条,友情链接,降价促销,新品爆款】,商品列表页面,商品详情等功能的开发,今天继续讲解购物车功能开发,仅供学习分享使用,如有不足之处,还请指正。
118 0
|
10月前
|
开发框架 前端开发 .NET
[回馈]ASP.NET Core MVC开发实战之商城系统(三)
[回馈]ASP.NET Core MVC开发实战之商城系统(三)
67 0
|
10月前
|
开发框架 前端开发 .NET
[回馈]ASP.NET Core MVC开发实战之商城系统(一)
[回馈]ASP.NET Core MVC开发实战之商城系统(一)
118 0