配置 MvcMiniProfiler
我正在尝试使用我的 asp.net mvc 3 应用程序配置 mvc miniprofiler。问题是我无法在视图中访问 MiniProfiler 类(我正在使用 webforms viewengine)。我尝试了一些方法
- 在 web.config 中的页面指令下添加了命名空间(主 web.config)
- 在 web.config 中的页面指令下添加了命名空间(视图文件夹中的 web.config)
- 在视图中导入命名空间
但是当我
<%var profiler = MiniProfiler.Current;%>
在视图中写入 时宣布当前上下文中不存在 MiniProfiler。
I'm trying to configure mvc miniprofiler with my asp.net mvc 3 application. The problem is that I can't access MiniProfiler class in my views (I'm using webforms viewengine). I have tried a few things
- Added namespace under page directive in web.config (main web.config)
- Added namespace under page directive in web.config (web.config in views folder)
- import namespace in view
But when I write
<%var profiler = MiniProfiler.Current;%>
in my view it announces that MiniProfiler does not exist in current context.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的视图中是否包含正确的命名空间:
Did you include the proper namespace in your views: