Click here to Skip to main content
15,886,664 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello Guys,
I want my form to be validated using Javascript. I am developing a shopping cart using ASP.NET. I don't want to use the Required_Field_Validator and stuff like that, that comes up with asp.net. I want to use plain javascript. I also don't want to add my javascript programmatically. I want to add simple <Script> tag in my master page or my "Redister.aspx". So i added it, but i am unable to call that javascript function from my submit button of "form". Sorry if this questions sounds ugly. i am new to development :(.
Posted

1 solution

XML
<HTML><HEAD>
<TITLE>ASP Web Pro</TITLE>

<SCRIPT LANGUAGE="JavaScript"'>
function validate() {
if (document.Subscribe.Name.value.length < 1) {
alert("Please enter a Customer Name.");
return false;
}
if (document.Subscribe.Email.value.length < 1) {
alert("Please enter an Email Address.");
return false;
}
return true;
}
</SCRIPT>

</HEAD>

<BODY>

<FORM name="Subscribe" Action="resultspage.asp" onSubmit="return validate();">
<input type="text" name="Name">
<input type="text" name="Email">
<input type=submit value="Submit">
</FORM>

</BODY>
</HTML>


Hope this helps if yes then accept and vote the answer
--Rahul D.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900