admin管理员组文章数量:1350044
I'm after a way of getting my referenced .js files in my 'master' cshtml files to e through to the 'child' cshtml files.
I have something like this in the master file, so the .js files always get referenced (and indeed I get js intellisense in the master file):
if (false)
{
<script type="text/javascript" src="../scripts/jquery.js"></script>
}
However when I reference the master.cshtml file in a 'child' page like this:
@{
Layout = "~/Views/Shared/master.cshtml";
}
I get no javascript intellisense. I really don't want to have to put the script tags at the top of each child page, there are a lot of script tags, and a lot of child pages!
I'm after a way of getting my referenced .js files in my 'master' cshtml files to e through to the 'child' cshtml files.
I have something like this in the master file, so the .js files always get referenced (and indeed I get js intellisense in the master file):
if (false)
{
<script type="text/javascript" src="../scripts/jquery.js"></script>
}
However when I reference the master.cshtml file in a 'child' page like this:
@{
Layout = "~/Views/Shared/master.cshtml";
}
I get no javascript intellisense. I really don't want to have to put the script tags at the top of each child page, there are a lot of script tags, and a lot of child pages!
Share Improve this question asked Jan 27, 2011 at 22:10 benpagebenpage 4,6284 gold badges44 silver badges41 bronze badges3 Answers
Reset to default 5The Razor editor right now cannot infer which script files are in use (this is because Razor layout pages are set via code and the editor does not execute a view page). Unfortunately you will have to include those script tags if you want JavaScript IntelliSense to work in your view pages.
I was hoping to find a solution to this as well.
The best option I've found is to always use an external js file. Create a file something like Master.js at the top use a reference path:
/// <reference path="../../Scripts/jquery-1.4.4.js"/>
Then you can have the intellisense. You need to still include the jquery file before your new external file.
So you don't lose the time to figure why the trick doesn't work, this could be useful:
If you use a relative path, this seems to work only if the path points to the same application. An absolute path apparently works in all cases:
reference path="../../Scripts/jquery-1.4.4.js"
The above works as long as the referenced script file is in the same application.
reference path="http://localhost/Scripts/jquery-1.4.4.js"
The above seems to work in any case.
本文标签: aspnet mvc 3Javascript Intellisense in Razor View Engine child pagesStack Overflow
版权声明:本文标题:asp.net mvc 3 - Javascript Intellisense in Razor View Engine child pages - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743871859a2553616.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论