I have a view folder called ‘HelloWorld’, inside it I have another folder called ‘table’ with stuff inside it, I have something located here: table/media/js/jquery.js under the helloworld directory, I’ve set it to ‘copy always’ and its build action i s’Content’.
In the index of the view control I do this:
<script type="text/javascript" language="javascript" src="table/media/js/jquery.js")></script>
But for some reason it can’t find it, if I try to manually go to it via the URL (i.e. http://localhost:XXXX/HelloWorld/table/media/js/jquery.js) the server still can’t find it.
Any ideas how I’m supposed to make this work?
The View folder is not browsable for security reasons, then you cannot serve files like your javascript file.
See the web.config inside the View folder, the handler BlockViewHandler does this,
create a similar structure within the content folder if you need to organize files.