我想创建一个分页帮手。 它需要的唯一参数是当前页,并PAGECOUNT routename。 不过,我不知道是否可以使用我的HTML辅助的定义内的另一个HTML辅助的返回值。 我特别是指以Html.RouteLink。 我怎么能去的类定义做这样的事情
using System;
using System.Web.Mvc;
namespace MvcApplication1.Helpers
{
public static class LabelExtensions
{
public static string Label(this HtmlHelper helper, string routeName, int currentpage, int totalPages)
{
string html = "";
//Stuff I add to html
//I'd like to generate a similar result as the helper bellow.
//This code does not work, it's just an example of what I'm trying to accomplish
html .= Html.RouteLink( pageNo, routeName, new { page = pageNo - 1 } );
//Other stuff I do the html
return html;
}
}
}
谢谢。