问题很简单,如标题中所述:是否可以在“App_Code”之外使用 Razor 助手?
示例(HtmlEx.cshtml文件):
@helper Script(string fileName, UrlHelper url)
{
<script src="@url.Content("~/Scripts/" + fileName)" type="text/javascript"></script>
}
我之所以这样问,是因为在App_Code中实际上没有什么可放置的了。我想在项目结构上有所不同。
谢谢。
更新:我不需要任何其他类型的扩展。我只对纯 Razor 助手感兴趣,就像Scott在这里谈论的那样:http://weblogs.asp.net/scottgu/archive/2011/05/12/asp-net-mvc-3-and-the-helper-syntax-within-razor.aspx
最佳答案
不,没有。
关于asp.net-mvc-3 - 我可以在App_Code之外使用全局 Razor @helper吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10665103/