asp.net mvc htmlhelper 扩展方法 使用
我新建一个了一个文件夹在里面写了一个这样的类publicstaticclassHtmlExp{publicstaticstringSpanTagSet(thisHtmlH...
我新建一个了一个文件夹在里面写了一个这样的类
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();
}
}
但是我在View视图中,html点不出来这个方法,请问这是哪里的问题?
没有引用命名空间!! - -!,页面没有加<% Import %> 展开
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();
}
}
但是我在View视图中,html点不出来这个方法,请问这是哪里的问题?
没有引用命名空间!! - -!,页面没有加<% Import %> 展开
展开全部
引用 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();
}
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询