Ask a Question related to ASP.NET General, Design and Development.
-
Paul #1
Client side validation in aspx page
Can anyone tell me how I can perfor client side validation in javascript on
a form in an aspx page.
All the scripts I use to use in classic asp dont seem to stop the submision
of the form. Is this because of the runat="server" in the form tag ?
Any ideas, urls e.t.c would be much appreciated.
Cheers Big Ears
Paul Guest
-
Client Side Validation
:confused;We have recently upgraded our web servers to Coldfusion MX 7.1. At the time of this writing, we still can not get flash forms to work on... -
Client side validation of a DataGrid
Hello all, I have a problem that looks simple and I think should be fairly common but wasn't able to find a solution yet. Here it is: I have a... -
Client Side Validation - Framework 1.0 / 1.1
Hello, I am having a particular problem, and am unable to understand where the problem is coming from. I am developing C# asp.net using the... -
Client side validation in footer row
I have a timesheet application with a variable number of rows, depending on how many projects the user is working on at the time. Each row has... -
validation summary doesnt display when there's client-side validation
I have a custom validator that validates a numeric field, txtField, that allows for thousand separators. I also placed a validation summary so... -
Ravikanth[MVP] #2
Client side validation in aspx page
Hi
Use Javascript code in Onsubmit event of Form.
<FORM NAME="F1" Onsubmit=test() >"
function test()
{
return true; //will submit the form
return false; //wont submit the form
}
HTH
Ravikanth
validation in javascript on>-----Original Message-----
>Can anyone tell me how I can perfor client sidestop the submision>a form in an aspx page.
>
>All the scripts I use to use in classic asp dont seem tothe form tag ?>of the form. Is this because of the runat="server" in>
>Any ideas, urls e.t.c would be much appreciated.
>
>Cheers Big Ears
>
>
>.
>Ravikanth[MVP] Guest
-
Bülent Keskin #3
Re: Client side validation in aspx page
Why don't you use Validator Controls?
They validate the form both on client and server...
For details: [url]http://localhost/quickstart[/url] (I hope you have a virtual
directory for quickstart)
"Paul" <paul@themedialounge.com> wrote in message
news:e4pPN7MXDHA.1620@TK2MSFTNGP12.phx.gbl...on> Can anyone tell me how I can perfor client side validation in javascriptsubmision> a form in an aspx page.
>
> All the scripts I use to use in classic asp dont seem to stop the> of the form. Is this because of the runat="server" in the form tag ?
>
> Any ideas, urls e.t.c would be much appreciated.
>
> Cheers Big Ears
>
>
Bülent Keskin Guest



Reply With Quote

