彩票走势图

ASP.NET MVC 2中实现右键菜单和简单分页

转帖|其它|编辑:郝浩|2011-01-13 14:47:42.000|阅读 750 次

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

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

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

  

  首先,下载此插件。

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

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

  定义右键菜单:

<div class="contextMenu" id="myMenu1">&nbsp;<ul>   

<li id="detail">

<img src=&quot;//www.cnblogs.com/Content/detail.ico" />detail</li>   

<li id="new"><img src="//www.cnblogs.com/Content/new.ico" />new</li>

<li id="delete"> 

<img src="//www.cnblogs.com/Content/delete.ico"/&gt;delete</li>   

<li id="modify">

<img src="//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&nbsp;= '/Products/Detail/'+t.id; 

}, 

'new': function (t) {

document.location.href = '/Products/Detail/' + t.id;

},

'delete': function (t) {

confirm("你确定删除吗?");

document.location.href = '/Products/Detail/'&nbsp;+&nbsp;t.id;

},

'modify': function (t) {

document.location.href =&nbsp;'/Products/Detail/' + t.id;

}

}

});

});

</script> 

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

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

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

<table> 

<tr> 

<th> 

ProductName 

</th> 

<th> 

SupplierID 

</th> 

<th> 

CategoryID11 </th> 

<th> 

QuantityPerUnit

</th> 

<th> 

UnitPrice

</th> 

<th> 

UnitsInStock20 </th> 

<th> 

UnitsOnOrder23 </th> 

<th> 

ReorderLevel

</th> 

<th> 

Discontinued

</th> 

</tr> 

<% foreach (var item&nbsp;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&nbsp;sb1 = new StringBuilder(); 

int seed = currentPage % currentPageSize == 0 ? currentPage&nbsp;: 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)&nbsp;+ 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 /&nbsp;10) + 0.5) - 1))

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

return sb1.ToString();

document.location.href = '/Products/Detail/' + t.id;

},

'delete': function (t) {

confirm("你确定删除吗?");

document.location.href = '/Products/Detail/'&nbsp;+ t.id;

},

'modify': function (t) {

document.location.href = '/Products/Detail/'&nbsp;+ t.id;

}

}

});

});

</script> 
 

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

<div class="pager"&gt;   

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

   </div>

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

  效果:

  

  显示:

  


标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn

文章转载自:网络转载

为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP