我想创建一个可以从视图中调用的静态助手方法。
辅助方法是否有可能访问当前的ViewContext而无需将ViewContext显式作为参数传递给方法?
除了ViewContext之外的HttpContext.Current。
答案 0 :(得分:8)
public static class XTenshuns
{
public static string MyHtmlHelper(this HtmlHelper helper)
{
// it's right here -> helper.ViewContext
}
}