Now I just try to get it work I have put both the master page and content page and the javascript.js file in the same folder.
The folder I have put them in is not the root folder.
The root folder looks like this C:\Users\tony\programmering\aspNet\Gotland\Environment_Crime
I have put them in this folder C:\Users\tony\programmering\aspNet\Gotland\Environment_Crime\coordinatorbut it is impossible to find the functions that are defined in the javascript.js
If I put the java script function local like this then the function is found.
<script type="text/javascript">
function Foo()
{
alert("Foo här");
}
</script>
So when I try to use the script like this <script type="text/javascript" src="<%# ResolveUrl("~/smastad.js") %>"></script>
...
Go to the complete details ...