asp net cshtml javascript file
hi all, i have an asp net project (SimpleApp) and in a cshtml file of my SimpleApp project i tried to refer a javascript file from another project deployed using IIS under NoteApp name
<script src="/NoteApp/Scripts/note.js"></script>
but i can't seem to use the javascript file, but when i tried to hover the full path of this <script src="/NoteApp/Scripts/note.js"></script> that's displayed on the screen (check using developer tools) the fullpath is shown, however the file is not working and only working if i included full path for example <script src="192.168.1.11/NoteApp/Scripts/note.js"></script>, can anyone help advise why?
<script src="/NoteApp/Scripts/note.js"></script>
but i can't seem to use the javascript file, but when i tried to hover the full path of this <script src="/NoteApp/Scripts/note.js"></script> that's displayed on the screen (check using developer tools) the fullpath is shown, however the file is not working and only working if i included full path for example <script src="192.168.1.11/NoteApp/Scripts/note.js"></script>, can anyone help advise why?