I want to do some client side validation using javascript in ASP.NET page.
I tried using
<script src="../../../JS/Registration.js" language="javascript" type="text/javascript" />
but its not working. Please help.
|
|
I want to do some client side validation using javascript in ASP.NET page. I tried using
but its not working. Please help.
|
|||
|
|
Probably the file is not in the path specified. '../../../' will move 3 step up to the directory in which the page is located and look for the js file in a folder named JS. Also the language attribute is Deprecated. See language = cdata [CI]
Edit Try changing
to
|
||||||
|
|
|
add like
OR can add in code behind.
|
|||
|
|
|
|
If your page is deeply pathed or might move around and your JS script is at "~/JS/Registration.js" of your web folder, you can try the following:
|
||
|
|
|
|
Use Fiddler to see what is happening. Then change the path accordingly. You will probably find you get a 404 error and the path is wrong. |
||
|
|
<script>tags aren't self closing. You should be using</script>. – Roatin Marth Nov 3 at 15:01