ASP.NET MVC - 从helper方法获取ViewContext

时间:2010-02-19 01:01:42

标签: asp.net asp.net-mvc viewcontext

我想创建一个可以从视图中调用的静态助手方法。

辅助方法是否有可能访问当前的ViewContext而无需将ViewContext显式作为参数传递给方法?

除了ViewContext之外的HttpContext.Current。

1 个答案:

答案 0 :(得分:8)

public static class XTenshuns
{
    public static string MyHtmlHelper(this HtmlHelper helper)
    {
        // it's right here -> helper.ViewContext
    }
}