RE: [WSG] javascript form submission

2004-05-19 Thread Nancy Johnson
Thanks I did not know that asp.net ran on linux. I will look at the URL you sent. Nancy -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Tuesday, May 18, 2004 9:31 PM To: [EMAIL PROTECTED] Subject: Re: [WSG]

RE: [WSG] javascript form submission

2004-05-19 Thread Robert Reed
mono.org appears to be something quite different. Try http://www.go-mono.com/ R. -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]On Behalf Of Nancy JohnsonSent: 19 May 2004 14:35To: [EMAIL PROTECTED]Subject: RE: [WSG] _javascript_ form submission

Re: [WSG] javascript form submission

2004-05-18 Thread Mordechai Peller
Todini, Gianfranco (TWIi London) wrote: where should I put now the form validation? I mean can I still use the onsubmit event on the input type image and use the same _javascript_ function that there was before or is it everytime better to have the validation on the server-side to have a

Re: [WSG] javascript form submission

2004-05-18 Thread James Ellis
Hi Todino Welcome to the list. Yes, it is far better to do validation on the server side because, with JS turned off, you don't get any form validation. Regarding the button to do the job, an input type=submit or input type=image will do the job for you. Remember: 1. When you submit an image

Re: [WSG] javascript form submission

2004-05-18 Thread Lea de Groot
On Tue, 18 May 2004 11:20:48 +0100, Todini, Gianfranco (TWIi London) wrote: I need to do some changes on a website to improve accessibility and one of the issue that I need to solve is the way the form are submitted, which is done by a javascript function called from the onclick event on an

Re: [WSG] javascript form submission

2004-05-18 Thread Cameron Adams
Ideal situation is to have an onload in the form tag, to allow for quick checking of the form without the user having to submit to the server. However, you always need server-side validation, as anyone without javascript will be always be able to circumvent your client-side form checking.

Re: [WSG] javascript form submission

2004-05-18 Thread Ned Lukies
I come from a programming rather than a design background, so my opinion may not be the correct one as far as accessability is concerned. In most of my web sites, when a user submits form data, that data is usually processed and stored in some kind of database. I believe that it is good

Re: [WSG] javascript form submission

2004-05-18 Thread Aaron DC
Moving on, as I am generally very lazy when coding, I don't really see the point in validating the data on the client, if it has to be validated on the server. I guess you could claim that javascript is quicker to highlight errors in the form. I have always found a stream of javascript alerts

Re: [WSG] javascript form submission

2004-05-18 Thread Mordechai Peller
Ned Lukies wrote: I come from a programming rather than a design background, so my opinion may not be the correct one as far as accessability is concerned. Since the issue is data validity, programming is what's important. That said, something I find even more annoying is a large form that is

RE: [WSG] javascript form submission

2004-05-18 Thread Nancy Johnson
] javascript form submission Ned Lukies wrote: I come from a programming rather than a design background, so my opinion may not be the correct one as far as accessability is concerned. Since the issue is data validity, programming is what's important. That said, something I find even more annoying

RE: [WSG] javascript form submission

2004-05-18 Thread Chatham, Will
Don't know if this helps or not, but I stumbled across a standard-compliant, server-side form validation tool caleld VDAEMON (http://www.x-code.com/vdaemon_web_form_validation.php) that has so far worked great for me. There is a free version for download, or you can buy the Dreamweaver extension

RE: [WSG] javascript form submission

2004-05-18 Thread Todini, Gianfranco (TWIi London)
[mailto:[EMAIL PROTECTED] Sent: 18 May 2004 12:23 To: [EMAIL PROTECTED] Subject: Re: [WSG] javascript form submission I come from a programming rather than a design background, so my opinion may not be the correct one as far as accessability is concerned. In most of my web sites, when a user submits

Re: [WSG] javascript form submission

2004-05-18 Thread Mordechai Peller
Nancy Johnson wrote: Dear All, This is a side track to this thread: I have always used .asp for form submission, but I want to find a _javascript_ and/or php versions of form submissions in case I have to do a site that does not have a windows based server. I think PHP is the way to

Re: [WSG] javascript form submission

2004-05-18 Thread Mordechai Peller
Ned Lukies wrote: I guess you could claim that javascript is quicker to highlight errors in the form. I have always found a stream of javascript alerts when submitting a form to be quite annoying. Only one alert, at most, is useful (one could argue zero is better). Beyond that, there are two

Re: [WSG] javascript form submission

2004-05-18 Thread wsg
If you are an ASP coder and want to move to Linux then why not use ASP.NET? It will be a much easier learning curve than PHP. FYI: Many ASP.NET pages run on Mono [C# compiler for Linux] including web services, and many DotNet apps run without modification. The Mono website is