5

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

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

除了 ViewContext 之外,类似 HttpContext.Current 的东西。

4

1 回答 1

8
public static class XTenshuns
{
    public static string MyHtmlHelper(this HtmlHelper helper)
    {
        // it's right here -> helper.ViewContext
    }
}
于 2010-02-19T01:10:02.290 回答