Ask a Question related to ASP.NET General, Design and Development.
-
Lloyd Dupont #1
prevent form submit ...
I have a web form with multiple part.
I do want the user to click the submit button to post back, so I know which
functionality was triggered.
unfortunately, when the focus is any text box, if the user hit ENTER the
form is submitted, how could prevent that ?
thanks, ...
Lloyd
Lloyd Dupont Guest
-
Contact Form (php) - how to prevent new window
My contact form works just fine, however, I currently have the target set to "_blank" which is not what I want. Rather than opening the .php file... -
Prevent Form Cache
Hello~ I am looking for a method to prevent form entry fields from being cached. I need to prevent the user from being able to click on a forms... -
Prevent Form to run from external site
Hello! Can anyone please tell me how can I do to prevent a Form to run from external site? I need that it just run in my site, like... -
Dupe Prevent on Form Submit
I have an html form, that has fields and when the submit button is pressed, the information is transferred to a php file. Which then inserts the... -
Form Field/ Form Submit Problems (probably an easy answer...)
Hey Everyone.. I have a form that has approximately 7 text fields and 1 checkbox. Generally when this form is submitted(to itself BTW) it works... -
Steve C. Orr, MCSD #2
Re: prevent form submit ...
You can intercept the client side enter keypress event of the text box and
then click the correct button using javascript code.
Here's a good example:
[url]http://www.kamp-hansen.dk/pages/showdoc.asp?id=28&menuid=21&menuid=18[/url]
You could also try using this free control.
[url]http://www.metabuilders.com/tools/DefaultButtons.aspx[/url]
And here's a good article on the subject:
[url]http://www.allasp.net/enterkey.aspx[/url]
--
I hope this helps,
Steve C. Orr, MCSD
[url]http://Steve.Orr.net[/url]
"Lloyd Dupont" <lloyd@galador.net> wrote in message
news:OCg$tR5XDHA.1480@tk2msftngp13.phx.gbl...which> I have a web form with multiple part.
> I do want the user to click the submit button to post back, so I know> functionality was triggered.
>
> unfortunately, when the focus is any text box, if the user hit ENTER the
> form is submitted, how could prevent that ?
>
> thanks, ...
> Lloyd
>
>
Steve C. Orr, MCSD Guest
-
Lloyd Dupont #3
Re: prevent form submit ...
hehe, regarding your samples I found I could simply write:
onkeydown="if ((event.which && event.which == 13) ||
(event.keyCode && event.keyCode == 13))
return false;"
and that remove the form triggering !
hhmm.. maybe I could a default button too... anyway thanks :-)
"Steve C. Orr, MCSD" <Steve@Orr.net> wrote in message
news:ex218c5XDHA.2236@TK2MSFTNGP10.phx.gbl...> You can intercept the client side enter keypress event of the text box and
> then click the correct button using javascript code.
> Here's a good example:
> [url]http://www.kamp-hansen.dk/pages/showdoc.asp?id=28&menuid=21&menuid=18[/url]
>
> You could also try using this free control.
> [url]http://www.metabuilders.com/tools/DefaultButtons.aspx[/url]
>
>
> And here's a good article on the subject:
> [url]http://www.allasp.net/enterkey.aspx[/url]
>
> --
> I hope this helps,
> Steve C. Orr, MCSD
> [url]http://Steve.Orr.net[/url]
>
>
> "Lloyd Dupont" <lloyd@galador.net> wrote in message
> news:OCg$tR5XDHA.1480@tk2msftngp13.phx.gbl...> which> > I have a web form with multiple part.
> > I do want the user to click the submit button to post back, so I know>> > functionality was triggered.
> >
> > unfortunately, when the focus is any text box, if the user hit ENTER the
> > form is submitted, how could prevent that ?
> >
> > thanks, ...
> > Lloyd
> >
> >
>
Lloyd Dupont Guest
-
Jerry III #4
Re: prevent form submit ...
If the user hits enter it triggers exactly the same action as clicking the
default submit button. What exactly are you trying to accomplish? If you
don't want to allow the user to submit the form don't create any submit
buttons... And if for some reason you have a script in your onclick event on
the submit button then just move it to onsubmit event of the form...
Jerry
"Lloyd Dupont" <lloyd@galador.net> wrote in message
news:OCg$tR5XDHA.1480@tk2msftngp13.phx.gbl...which> I have a web form with multiple part.
> I do want the user to click the submit button to post back, so I know> functionality was triggered.
>
> unfortunately, when the focus is any text box, if the user hit ENTER the
> form is submitted, how could prevent that ?
>
> thanks, ...
> Lloyd
>
>
Jerry III Guest
-
Steve C. Orr, MCSD #5
Re: prevent form submit ...
Right, that was one of the examples in the links I gave you.
I'm glad it worked out well for you.
--
Steve C. Orr, MCSD
[url]http://Steve.Orr.net[/url]
"Lloyd Dupont" <lloyd@galador.net> wrote in message
news:uuxUoL6XDHA.1480@tk2msftngp13.phx.gbl...and> hehe, regarding your samples I found I could simply write:
> onkeydown="if ((event.which && event.which == 13) ||
> (event.keyCode && event.keyCode == 13))
> return false;"
>
> and that remove the form triggering !
> hhmm.. maybe I could a default button too... anyway thanks :-)
>
>
> "Steve C. Orr, MCSD" <Steve@Orr.net> wrote in message
> news:ex218c5XDHA.2236@TK2MSFTNGP10.phx.gbl...> > You can intercept the client side enter keypress event of the text boxthe> > then click the correct button using javascript code.
> > Here's a good example:
> > [url]http://www.kamp-hansen.dk/pages/showdoc.asp?id=28&menuid=21&menuid=18[/url]
> >
> > You could also try using this free control.
> > [url]http://www.metabuilders.com/tools/DefaultButtons.aspx[/url]
> >
> >
> > And here's a good article on the subject:
> > [url]http://www.allasp.net/enterkey.aspx[/url]
> >
> > --
> > I hope this helps,
> > Steve C. Orr, MCSD
> > [url]http://Steve.Orr.net[/url]
> >
> >
> > "Lloyd Dupont" <lloyd@galador.net> wrote in message
> > news:OCg$tR5XDHA.1480@tk2msftngp13.phx.gbl...> > which> > > I have a web form with multiple part.
> > > I do want the user to click the submit button to post back, so I know> > > functionality was triggered.
> > >
> > > unfortunately, when the focus is any text box, if the user hit ENTER>> >> > > form is submitted, how could prevent that ?
> > >
> > > thanks, ...
> > > Lloyd
> > >
> > >
> >
>
Steve C. Orr, MCSD Guest
-
PJ #6
Re: prevent form submit ...
on a wider note...this book will payback after about 1 day of javascript
coding....
Javascript & DHTML Cookbook ( Danny Goodman )
[url]http://www.bookpool.com/.x/hywrfgtqor/sm/0596004672[/url]
"Lloyd Dupont" <lloyd@galador.net> wrote in message
news:uuxUoL6XDHA.1480@tk2msftngp13.phx.gbl...and> hehe, regarding your samples I found I could simply write:
> onkeydown="if ((event.which && event.which == 13) ||
> (event.keyCode && event.keyCode == 13))
> return false;"
>
> and that remove the form triggering !
> hhmm.. maybe I could a default button too... anyway thanks :-)
>
>
> "Steve C. Orr, MCSD" <Steve@Orr.net> wrote in message
> news:ex218c5XDHA.2236@TK2MSFTNGP10.phx.gbl...> > You can intercept the client side enter keypress event of the text boxthe> > then click the correct button using javascript code.
> > Here's a good example:
> > [url]http://www.kamp-hansen.dk/pages/showdoc.asp?id=28&menuid=21&menuid=18[/url]
> >
> > You could also try using this free control.
> > [url]http://www.metabuilders.com/tools/DefaultButtons.aspx[/url]
> >
> >
> > And here's a good article on the subject:
> > [url]http://www.allasp.net/enterkey.aspx[/url]
> >
> > --
> > I hope this helps,
> > Steve C. Orr, MCSD
> > [url]http://Steve.Orr.net[/url]
> >
> >
> > "Lloyd Dupont" <lloyd@galador.net> wrote in message
> > news:OCg$tR5XDHA.1480@tk2msftngp13.phx.gbl...> > which> > > I have a web form with multiple part.
> > > I do want the user to click the submit button to post back, so I know> > > functionality was triggered.
> > >
> > > unfortunately, when the focus is any text box, if the user hit ENTER>> >> > > form is submitted, how could prevent that ?
> > >
> > > thanks, ...
> > > Lloyd
> > >
> > >
> >
>
PJ Guest
-
Lloyd Dupont #7
Re: prevent form submit ...
I have multiple section on my web page.
like 'unregister section' and 'update profile section'
so I could not 'just submit' the form.
I need the user to click on one button, so I know if it unregister, or if it
just update on its profile.
otherwise, mmhh.. what would you do ?
and no, I rather have them both on the same page than on 2 empty otherwise
page.
"Jerry III" <jerryiii@hotmail.com> a écrit dans le message de
news:%23d97GN6XDHA.2572@TK2MSFTNGP09.phx.gbl...on> If the user hits enter it triggers exactly the same action as clicking the
> default submit button. What exactly are you trying to accomplish? If you
> don't want to allow the user to submit the form don't create any submit
> buttons... And if for some reason you have a script in your onclick event> the submit button then just move it to onsubmit event of the form...
>
> Jerry
>
> "Lloyd Dupont" <lloyd@galador.net> wrote in message
> news:OCg$tR5XDHA.1480@tk2msftngp13.phx.gbl...> which> > I have a web form with multiple part.
> > I do want the user to click the submit button to post back, so I know>> > functionality was triggered.
> >
> > unfortunately, when the focus is any text box, if the user hit ENTER the
> > form is submitted, how could prevent that ?
> >
> > thanks, ...
> > Lloyd
> >
> >
>
Lloyd Dupont Guest



Reply With Quote

