Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I make javascript file work on any page that inherit from the master page?

I am new to asp.net. I have a question, How do I make javascript file work on any page that inherit from the master page? Because i put <link type="text/javascript" href="scripts/JScript.js" /> in the masterpage and it didn't seem to work?

like image 556
Keenlearner Avatar asked Dec 29 '25 20:12

Keenlearner


1 Answers

Here is the problem: Instead of

<link type="text/javascript" href="scripts/JScript.js" />

use following:

<script type="text/javascript" src="scripts/JScript.js"></script> 

let me know if it does not wok.

like image 150
deej Avatar answered Dec 31 '25 09:12

deej