vote up 2 vote down star

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.

flag

54% accept rate
2  
Can you explain 'it is not working'? – adamantium Nov 3 at 11:47
FYI <script> tags aren't self closing. You should be using </script>. – Roatin Marth Nov 3 at 15:01

4 Answers

vote up 3 vote down check

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

Scripts

language = cdata [CI]

Deprecated. This attribute specifies the scripting language of the contents of this element. Its value is an identifier for the language, but since these identifiers are not standard, this attribute has been deprecated in favor of type.

Edit

Try changing

<script src="../../../JS/Registration.js" language="javascript" type="text/javascript" />

to

<script src="../../../JS/Registration.js" language="javascript" type="text/javascript"></script>
link|flag
I am sure, file is present at this path. – vaibhav Nov 3 at 11:46
Maybe you're using master pages or something else and not quite sure where the files are launched. Simply open the file in the browser, press "view source" and use the JS path in the URL to see if it opens. Your syntax is (more or less) correct. – Faruz Nov 3 at 11:48
yes I am using Master pages. – vaibhav Nov 3 at 14:38
vote up 1 vote down

add like

<head runat="server">
<script src="Registration.js" type="text/javascript"></script>
</head>

OR can add in code behind.

Page.ClientScript.RegisterClientScriptInclude("Registration", ResolveUrl("~/js/Registration.js"));
link|flag
vote up 3 vote down

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:

<script src='<%=ResolveClientUrl("~/JS/Registration.js") %>' 
type="text/javascript"></script>
link|flag
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.