为什么我的mvc2.0中没有HtmlHelper.Pager扩展方法
1个回答
展开全部
引用 System.Web.Mvc;
并把类的命名空间跟 System.Web.Mvc放在一起
namespace System.Web.Mvc{
public static class HtmlExp
{
public static string SpanTagSet (this HtmlHelper helper,string id,string value,string key,string style)
{
TagBuilder tb=new TagBuilder(key);
tb.MergeAttribute("style",style);
tb.MergeAttribute("name",id);
tb.GenerateId(id);
tb.SetInnerText(value);
return tb.ToString();
}
}
}
并把类的命名空间跟 System.Web.Mvc放在一起
namespace System.Web.Mvc{
public static class HtmlExp
{
public static string SpanTagSet (this HtmlHelper helper,string id,string value,string key,string style)
{
TagBuilder tb=new TagBuilder(key);
tb.MergeAttribute("style",style);
tb.MergeAttribute("name",id);
tb.GenerateId(id);
tb.SetInnerText(value);
return tb.ToString();
}
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询