Choosing whitch button will act as submit button

B

Bjorn Sagbakken

Hello.

There maybe an simple answer to this, but sometimes one get a strange
blindness when working intensely on one single problem.

I'm using ASP.NET 2003, building pages that include 3 user controls (banner,
top-menu and sub-menu). The top-menu contains like five asp:buttons.

Further down the form there is search field with another asp:button. And I
naturally want this button to act as submit button in the sense that when
the user push the [enter] button in the search field. Well, this doesn't
happen. The first (left) button on the usercontol top-menu fires, whitch
brings the user to completely different page (whitch is the intention when
the user actually clicks this button)

I have tried to add another form tag for this, but no thank you, only one
server side form tag, please!

I have tried various ugly workarounds, like passing session variables so
that the button in the top-menu actually clicks back on the other button. No
luck.

Anyone with an idea on how to pick whitch button that will act as submit
button, when usercontrols with buttons are included?

Thanks.


Regards
Bjorn
 
B

Bjorn Sagbakken

Yes, I have been thinking of trapping the enter key (ascii 13), but this has
to be done in the asp:textbox (I think), and I am not sure how to do this.
Maybe in a page event, but which?
I using VB, so I would be grateful for any code example in VB.

Bjorn

Microsoft said:
Yes, This will prevent any enter key submiting. However, you can extend
this to allow the one you want to submit.

http://www.trainingon.net/Articles/Art147/Art147.html



--

Best Regards - OHM

http://TrainingOn.net
--------------------------------------------------


Bjorn Sagbakken said:
Hello.

There maybe an simple answer to this, but sometimes one get a strange
blindness when working intensely on one single problem.

I'm using ASP.NET 2003, building pages that include 3 user controls
(banner, top-menu and sub-menu). The top-menu contains like five
asp:buttons.

Further down the form there is search field with another asp:button. And
I naturally want this button to act as submit button in the sense that
when the user push the [enter] button in the search field. Well, this
doesn't happen. The first (left) button on the usercontol top-menu fires,
whitch brings the user to completely different page (whitch is the
intention when the user actually clicks this button)

I have tried to add another form tag for this, but no thank you, only one
server side form tag, please!

I have tried various ugly workarounds, like passing session variables so
that the button in the top-menu actually clicks back on the other button.
No luck.

Anyone with an idea on how to pick whitch button that will act as submit
button, when usercontrols with buttons are included?

Thanks.


Regards
Bjorn
 
O

OHM

This needs to be done on the client side using script langauge. You need to
trap the onkeydown event of the body tag.

--

Best Regards - OHM

http://TrainingOn.net
--------------------------------------------------


Bjorn Sagbakken said:
Yes, I have been thinking of trapping the enter key (ascii 13), but this
has to be done in the asp:textbox (I think), and I am not sure how to do
this. Maybe in a page event, but which?
I using VB, so I would be grateful for any code example in VB.

Bjorn

Microsoft said:
Yes, This will prevent any enter key submiting. However, you can extend
this to allow the one you want to submit.

http://www.trainingon.net/Articles/Art147/Art147.html



--

Best Regards - OHM

http://TrainingOn.net
--------------------------------------------------


Bjorn Sagbakken said:
Hello.

There maybe an simple answer to this, but sometimes one get a strange
blindness when working intensely on one single problem.

I'm using ASP.NET 2003, building pages that include 3 user controls
(banner, top-menu and sub-menu). The top-menu contains like five
asp:buttons.

Further down the form there is search field with another asp:button. And
I naturally want this button to act as submit button in the sense that
when the user push the [enter] button in the search field. Well, this
doesn't happen. The first (left) button on the usercontol top-menu
fires, whitch brings the user to completely different page (whitch is
the intention when the user actually clicks this button)

I have tried to add another form tag for this, but no thank you, only
one server side form tag, please!

I have tried various ugly workarounds, like passing session variables so
that the button in the top-menu actually clicks back on the other
button. No luck.

Anyone with an idea on how to pick whitch button that will act as submit
button, when usercontrols with buttons are included?

Thanks.


Regards
Bjorn
 
B

Bjorn Sagbakken

All right, I give in. Although I think it is kind of stupid that the
server-code cannot decide whitch button should be the submit button. I even
tried to tingle with the tabindex. I mean, on the form_load it should be
easy enough to state this.

But since I am fairly new to client scripting I couldn't make that work
either. I tried something like this:
<script language =vbscript>
Sub Search

if window.event.keyCode=13 then

event.returnvalue=False

event.cancel=True

endif

end sub

</script>

I only get a page error.

Regards
Bjorn

OHM said:
This needs to be done on the client side using script langauge. You need
to trap the onkeydown event of the body tag.

--

Best Regards - OHM

http://TrainingOn.net
--------------------------------------------------


Bjorn Sagbakken said:
Yes, I have been thinking of trapping the enter key (ascii 13), but this
has to be done in the asp:textbox (I think), and I am not sure how to do
this. Maybe in a page event, but which?
I using VB, so I would be grateful for any code example in VB.

Bjorn

Microsoft said:
Yes, This will prevent any enter key submiting. However, you can extend
this to allow the one you want to submit.

http://www.trainingon.net/Articles/Art147/Art147.html



--

Best Regards - OHM

http://TrainingOn.net
--------------------------------------------------


Hello.

There maybe an simple answer to this, but sometimes one get a strange
blindness when working intensely on one single problem.

I'm using ASP.NET 2003, building pages that include 3 user controls
(banner, top-menu and sub-menu). The top-menu contains like five
asp:buttons.

Further down the form there is search field with another asp:button.
And I naturally want this button to act as submit button in the sense
that when the user push the [enter] button in the search field. Well,
this doesn't happen. The first (left) button on the usercontol top-menu
fires, whitch brings the user to completely different page (whitch is
the intention when the user actually clicks this button)

I have tried to add another form tag for this, but no thank you, only
one server side form tag, please!

I have tried various ugly workarounds, like passing session variables
so that the button in the top-menu actually clicks back on the other
button. No luck.

Anyone with an idea on how to pick whitch button that will act as
submit button, when usercontrols with buttons are included?

Thanks.


Regards
Bjorn
 
M

Mark Fitzpatrick

Use the script exactly as supplied for the browser. You don't want to use
VBScript on the client side, JavaScript is the universal way. Server code
cannot decide which button should be the submit since this is controlled by
the browser itself and the browser has it's own way of determining which
should be the submit, usually the first button that can postback that exists
within the forms control hierarchy.


--

Hope this helps,
Mark Fitzpatrick
Former Microsoft FrontPage MVP 199?-2006



Bjorn Sagbakken said:
All right, I give in. Although I think it is kind of stupid that the
server-code cannot decide whitch button should be the submit button. I
even tried to tingle with the tabindex. I mean, on the form_load it should
be easy enough to state this.

But since I am fairly new to client scripting I couldn't make that work
either. I tried something like this:
<script language =vbscript>
Sub Search

if window.event.keyCode=13 then

event.returnvalue=False

event.cancel=True

endif

end sub

</script>

I only get a page error.

Regards
Bjorn

OHM said:
This needs to be done on the client side using script langauge. You need
to trap the onkeydown event of the body tag.

--

Best Regards - OHM

http://TrainingOn.net
--------------------------------------------------


Bjorn Sagbakken said:
Yes, I have been thinking of trapping the enter key (ascii 13), but this
has to be done in the asp:textbox (I think), and I am not sure how to do
this. Maybe in a page event, but which?
I using VB, so I would be grateful for any code example in VB.

Bjorn

"Microsoft" <news.microsoft.com> wrote in message
Yes, This will prevent any enter key submiting. However, you can extend
this to allow the one you want to submit.

http://www.trainingon.net/Articles/Art147/Art147.html



--

Best Regards - OHM

http://TrainingOn.net
--------------------------------------------------


Hello.

There maybe an simple answer to this, but sometimes one get a strange
blindness when working intensely on one single problem.

I'm using ASP.NET 2003, building pages that include 3 user controls
(banner, top-menu and sub-menu). The top-menu contains like five
asp:buttons.

Further down the form there is search field with another asp:button.
And I naturally want this button to act as submit button in the sense
that when the user push the [enter] button in the search field. Well,
this doesn't happen. The first (left) button on the usercontol
top-menu fires, whitch brings the user to completely different page
(whitch is the intention when the user actually clicks this button)

I have tried to add another form tag for this, but no thank you, only
one server side form tag, please!

I have tried various ugly workarounds, like passing session variables
so that the button in the top-menu actually clicks back on the other
button. No luck.

Anyone with an idea on how to pick whitch button that will act as
submit button, when usercontrols with buttons are included?

Thanks.


Regards
Bjorn
 
B

Bjorn Sagbakken

Thanks, I think I'm beginning to understand the concept now. The script
almost works, disabling the [ENTER] keypress, but I haven't yet been
successful in executing the desired button_click action instead. This
application is for my company's Intranet, so VBScript will do in the first
place, everyone is stuck with Microsoft, except for Lotus Notes for mail.
But I will start learning the basics of JavaScript for puposes like this.

Bjorn

Mark Fitzpatrick said:
Use the script exactly as supplied for the browser. You don't want to use
VBScript on the client side, JavaScript is the universal way. Server code
cannot decide which button should be the submit since this is controlled
by the browser itself and the browser has it's own way of determining
which should be the submit, usually the first button that can postback
that exists within the forms control hierarchy.


--

Hope this helps,
Mark Fitzpatrick
Former Microsoft FrontPage MVP 199?-2006



Bjorn Sagbakken said:
All right, I give in. Although I think it is kind of stupid that the
server-code cannot decide whitch button should be the submit button. I
even tried to tingle with the tabindex. I mean, on the form_load it
should be easy enough to state this.

But since I am fairly new to client scripting I couldn't make that work
either. I tried something like this:
<script language =vbscript>
Sub Search

if window.event.keyCode=13 then

event.returnvalue=False

event.cancel=True

endif

end sub

</script>

I only get a page error.

Regards
Bjorn

OHM said:
This needs to be done on the client side using script langauge. You need
to trap the onkeydown event of the body tag.

--

Best Regards - OHM

http://TrainingOn.net
--------------------------------------------------


Yes, I have been thinking of trapping the enter key (ascii 13), but
this has to be done in the asp:textbox (I think), and I am not sure how
to do this. Maybe in a page event, but which?
I using VB, so I would be grateful for any code example in VB.

Bjorn

"Microsoft" <news.microsoft.com> wrote in message
Yes, This will prevent any enter key submiting. However, you can
extend this to allow the one you want to submit.

http://www.trainingon.net/Articles/Art147/Art147.html



--

Best Regards - OHM

http://TrainingOn.net
--------------------------------------------------


Hello.

There maybe an simple answer to this, but sometimes one get a strange
blindness when working intensely on one single problem.

I'm using ASP.NET 2003, building pages that include 3 user controls
(banner, top-menu and sub-menu). The top-menu contains like five
asp:buttons.

Further down the form there is search field with another asp:button.
And I naturally want this button to act as submit button in the sense
that when the user push the [enter] button in the search field. Well,
this doesn't happen. The first (left) button on the usercontol
top-menu fires, whitch brings the user to completely different page
(whitch is the intention when the user actually clicks this button)

I have tried to add another form tag for this, but no thank you, only
one server side form tag, please!

I have tried various ugly workarounds, like passing session variables
so that the button in the top-menu actually clicks back on the other
button. No luck.

Anyone with an idea on how to pick whitch button that will act as
submit button, when usercontrols with buttons are included?

Thanks.


Regards
Bjorn
 
B

Bjorn Sagbakken

Yes, now everthing works like a dream. Just a little client scripting was
all it took.
Thanks everyone.

Bjorn

Bjorn Sagbakken said:
Thanks, I think I'm beginning to understand the concept now. The script
almost works, disabling the [ENTER] keypress, but I haven't yet been
successful in executing the desired button_click action instead. This
application is for my company's Intranet, so VBScript will do in the first
place, everyone is stuck with Microsoft, except for Lotus Notes for mail.
But I will start learning the basics of JavaScript for puposes like this.

Bjorn

Mark Fitzpatrick said:
Use the script exactly as supplied for the browser. You don't want to use
VBScript on the client side, JavaScript is the universal way. Server code
cannot decide which button should be the submit since this is controlled
by the browser itself and the browser has it's own way of determining
which should be the submit, usually the first button that can postback
that exists within the forms control hierarchy.


--

Hope this helps,
Mark Fitzpatrick
Former Microsoft FrontPage MVP 199?-2006



Bjorn Sagbakken said:
All right, I give in. Although I think it is kind of stupid that the
server-code cannot decide whitch button should be the submit button. I
even tried to tingle with the tabindex. I mean, on the form_load it
should be easy enough to state this.

But since I am fairly new to client scripting I couldn't make that work
either. I tried something like this:
<script language =vbscript>
Sub Search

if window.event.keyCode=13 then

event.returnvalue=False

event.cancel=True

endif

end sub

</script>

I only get a page error.

Regards
Bjorn

"OHM" <news.microsoft.com> wrote in message
This needs to be done on the client side using script langauge. You
need to trap the onkeydown event of the body tag.

--

Best Regards - OHM

http://TrainingOn.net
--------------------------------------------------


Yes, I have been thinking of trapping the enter key (ascii 13), but
this has to be done in the asp:textbox (I think), and I am not sure
how to do this. Maybe in a page event, but which?
I using VB, so I would be grateful for any code example in VB.

Bjorn

"Microsoft" <news.microsoft.com> wrote in message
Yes, This will prevent any enter key submiting. However, you can
extend this to allow the one you want to submit.

http://www.trainingon.net/Articles/Art147/Art147.html



--

Best Regards - OHM

http://TrainingOn.net
--------------------------------------------------


Hello.

There maybe an simple answer to this, but sometimes one get a
strange blindness when working intensely on one single problem.

I'm using ASP.NET 2003, building pages that include 3 user controls
(banner, top-menu and sub-menu). The top-menu contains like five
asp:buttons.

Further down the form there is search field with another asp:button.
And I naturally want this button to act as submit button in the
sense that when the user push the [enter] button in the search
field. Well, this doesn't happen. The first (left) button on the
usercontol top-menu fires, whitch brings the user to completely
different page (whitch is the intention when the user actually
clicks this button)

I have tried to add another form tag for this, but no thank you,
only one server side form tag, please!

I have tried various ugly workarounds, like passing session
variables so that the button in the top-menu actually clicks back on
the other button. No luck.

Anyone with an idea on how to pick whitch button that will act as
submit button, when usercontrols with buttons are included?

Thanks.


Regards
Bjorn
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,582
Members
45,057
Latest member
KetoBeezACVGummies

Latest Threads

Top