Im new to this ASP and Javascript thingy and so already got problems. I have a form with a text box on which i have used Javascript to validate so if nothing is entered an alert pops up.
before my code for the form was:
FORM onSubmit="return validate(this);"
and the validation worked fine. In order to use the form properly I made it get a file. Now my code is
FORM action="result.asp" method="get" onSubmit="return validate(this);"
and now the pop up doesnt appear if nothing is entered. Instead
result.asp?searchfield=
gets appended to the url. Please help its driving me mad!!!
