I've been encountering a problem accessing scripts in my ASP.NET (Web Forms) application. Even though the file is accessible through the server, it doesn't seem to load locally.
<script type="text/javascript" src="fullcalendar.js"></script>
Changing the access path hasn't made any difference. However, the script works fine when using the CDN:
<script src='https://cdnjs.cloudflare.com/ajax/libs/fullcalendar/2.4.0/fullcalendar.js'></script>
I've faced similar issues before with local JQuery or Bootstrap scripts. Currently, I need to make a modification to a line in the .js file and can't do it with the CDN. Any suggestions?