Custom Html Helper not working

与世无争的帅哥 提交于 2019-12-12 03:48:48

问题


I am trying to learn MVC3 from Pro ASP.NET MVC3 Framework. But i am stuck at one place where we add custom Html Helper.

I did every thing mentioned in the book, but i am not able to add the custom Html helper.

Can somebody please help.

Thanks

List.cshtml

    @model SportsStore.WebUI.Models.ProductListViewModel          


@{    
    ViewBag.Titke = "Product";
}

<!DOCTYPE html>

<html>
<head>
    <title>List</title>
</head>
<body>
    <div>
        @foreach (var p in Model.Products)
        {
            <div class="item">
                @p.Name
                @p.Description
                <h4>@p.Price.ToString("c")</h4>                
            </div>
        }
        <div class="Pager">
        @Html.PageLinks(Model.pagingInfo, x => Url.Action("List", new {page = x}))
        </div>
    </div>    
</body>
</html>

PagingHelper.Cs

using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using SportsStore.WebUI.Models;
using System.Text;

namespace SportsStore.WebUI.HtmlHelpers
{
    public static class PagingHelper
    {
        public static MvcHtmlString PageLinks(HtmlHelper helper, PagingInfo pagingInfo, Func<int, string> pageUrl)
        {
            StringBuilder linkString = new StringBuilder();
            for (int i = 1; i <= pagingInfo.TotalPages; i++)
            {
                TagBuilder tag = new TagBuilder("a");
                tag.MergeAttribute("href", pageUrl(i));
                tag.InnerHtml = i.ToString();
                if (i == pagingInfo.CurrentPage)
                {
                    tag.AddCssClass("selected");
                }
                linkString.Append(tag.ToString());
            }
            return MvcHtmlString.Create(linkString.ToString());

        }
    }
}

Web.Config

 <system.web.webPages.razor>
    <host factoryType="System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
    <pages pageBaseType="System.Web.Mvc.WebViewPage">
      <namespaces>
        <add namespace="System.Web.Mvc" />
        <add namespace="System.Web.Mvc.Ajax" />
        <add namespace="System.Web.Mvc.Html" />
        <add namespace="System.Web.Routing" />
    <add namespace="SportsStore.WebUI.HtmlHelpers" /> 
      </namespaces>
    </pages>
  </system.web.webPages.razor>

回答1:


You didn't create an extension method.

To make an extension method, you need to decorate the first parameter with the this keyword.



来源:https://stackoverflow.com/questions/14103586/custom-html-helper-not-working

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!