473,385 Members | 1,907 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

multiple image submit buttons in one form

Hi all
I have the following code:
I am trying to use the value of the image button to evaluate what plan the
user has chosen, i.e. it request("submit1")="Basic", then the user chose
basic plan ...
But when I click one of the image button, the thing is different from what I
thought.

it seems that it has field name like submit1.x=24&submit1.y=10, looks like
the form submit swith the image button position values instead of the value
of the submit button itself. Am I crazy of doing this way? what should I do?
Thank you

<tr>
<td valign="bottom" style="height:260px;width:200px;
background-image:url(image/select1_bg.png); background-position:bottom;
background-repeat:no-repeat"><div align="center"
style="padding-bottom:15px;color: #333333; font-weight:bold">Total Rate
<%=FormatCurrency(iBTotalDue)%><br>
<input type="image" src="image/buynow_voyager.jpg" name="BasicPlan"
value="Basic" >
</div></td>
<td valign="bottom" style="height:260px;width:200px;
background-image:url(image/select2_bg.png); background-position:bottom;
background-repeat:no-repeat"><div align="center"
style="padding-bottom:15px;color: #333333; font-weight:bold">Total Rate
<%=FormatCurrency(iPTotalDue)%><br>
<input type="image" src="image/buynow_voyager.jpg" name="PlusPlan"
value="Plus"
</div></td>
<td valign="bottom" style="height:260px;width:200px;
background-image:url(image/select3_bg.png); background-position:bottom;
background-repeat:no-repeat"><div align="center"
style="padding-bottom:15px;color: #333333; font-weight:bold">Total Rate
<%=FormatCurrency(iETotalDue)%><br>
<input type="image" src="image/buynow_voyager.jpg" name="ElitePlan"
value="Elite" >
</div></td>
</tr>
--
Betty
Mar 20 '07 #1
4 6652
Hi Betty,

How are you doing.

As for the <input type="image" .../button, I think the value that will be
submited (related to each image button) is specific to browser. Based on my
test ,for IE7, it will submit the x, y position of the button, for firefox,
it will submit x,y postion in as well as the "value" attribute.

Therefore, for your scenario, I think you may consider a more flexible way
to distinct the submit from different image(or submit) button. For example,
you can use a hidden field to mark the clicked submit button and check at
server-side. Here is a FAQ article that demonstrate the similar approach:

#When I have multiple submit buttons, how do I tell which was clicked?
http://classicasp.aspfaq.com/forms/w...-buttons-how-d
o-i-tell-which-was-clicked.html

Hope this helps. If you have any other concerns or questions, please feel
free to let me know.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead

==================================================

Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.

==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.

Mar 20 '07 #2
Steven,
Thanks for the late reply and thank you so much for the help.
Yes, I did use some hidden fields to solve a similar problem in aother
program. But somehow this Javascript doesn't work in a Mac OS 9.0 with IE 5.x
installed as I noticed in my monitoring program, somehow customers with this
system and using IE 5.x fail to submit the request and I cannot figure out
why(but if firefox is installed or Mac OS 10.0 is installed, everything seems
fine.) I still cannot figure out what is the best way yet.
--
Betty
"Steven Cheng[MSFT]" wrote:
Hi Betty,

How are you doing.

As for the <input type="image" .../button, I think the value that will be
submited (related to each image button) is specific to browser. Based on my
test ,for IE7, it will submit the x, y position of the button, for firefox,
it will submit x,y postion in as well as the "value" attribute.

Therefore, for your scenario, I think you may consider a more flexible way
to distinct the submit from different image(or submit) button. For example,
you can use a hidden field to mark the clicked submit button and check at
server-side. Here is a FAQ article that demonstrate the similar approach:

#When I have multiple submit buttons, how do I tell which was clicked?
http://classicasp.aspfaq.com/forms/w...-buttons-how-d
o-i-tell-which-was-clicked.html

Hope this helps. If you have any other concerns or questions, please feel
free to let me know.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead

==================================================

Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.

==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.

Apr 9 '07 #3
Thanks for your followup Betty,

So the problem seems specific to that certain client box. Anyway, if you
need any help on ASP side programing, please feel free to post here.
Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
This posting is provided "AS IS" with no warranties, and confers no rights.

Apr 11 '07 #4
Steven,
Sorry for the type, what I was trying to say is "Sorry for the late reply
and ..."

Not "thanks for the late reply and ..." :+(
--
Betty
"c676228" wrote:
Steven,
Thanks for the late reply and thank you so much for the help.
Yes, I did use some hidden fields to solve a similar problem in aother
program. But somehow this Javascript doesn't work in a Mac OS 9.0 with IE 5.x
installed as I noticed in my monitoring program, somehow customers with this
system and using IE 5.x fail to submit the request and I cannot figure out
why(but if firefox is installed or Mac OS 10.0 is installed, everything seems
fine.) I still cannot figure out what is the best way yet.
--
Betty
"Steven Cheng[MSFT]" wrote:
Hi Betty,

How are you doing.

As for the <input type="image" .../button, I think the value that will be
submited (related to each image button) is specific to browser. Based on my
test ,for IE7, it will submit the x, y position of the button, for firefox,
it will submit x,y postion in as well as the "value" attribute.

Therefore, for your scenario, I think you may consider a more flexible way
to distinct the submit from different image(or submit) button. For example,
you can use a hidden field to mark the clicked submit button and check at
server-side. Here is a FAQ article that demonstrate the similar approach:

#When I have multiple submit buttons, how do I tell which was clicked?
http://classicasp.aspfaq.com/forms/w...-buttons-how-d
o-i-tell-which-was-clicked.html

Hope this helps. If you have any other concerns or questions, please feel
free to let me know.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead

==================================================

Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.

==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.


Apr 13 '07 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: Matt | last post by:
How can I implement multiple buttons for a form like - submit, cancel, logout etc. Thanks. Matt
2
by: Colin Steadman | last post by:
I have two buttons on my form and need to know which was clicked. If I setup the buttons like this: <input type="submit" value="submit" name="submit_to_array"> <input type="submit"...
3
by: Adam | last post by:
Hey guys, I've decided to stop banging my head against the wall and just ask you guys for the answer. I can't seem to find it. I have a form in which I have multiple submit buttons; only, I'm...
3
by: D. Shane Fowlkes | last post by:
Sorry for the length of this post. I have created a rather complex form which has a header/line item (parent and child records) structure. It's for an intranet. A screenshot can be seen here: ...
5
by: Lau Lei Cheong | last post by:
Hello, Let's say that I have multiple submit buttons on a form (imagebuttons actually, but documentations say that <input type=image> which a called image buttons should behave like submit...
8
by: Adam | last post by:
Hey, I'm using JS to submit a form with image submit buttons, using the following code... (Page is here... http://www.cards2do.co.uk/addcard.php?card_id=292 ) ...
5
by: mayur_hirpara | last post by:
Hi, I have been developing web applications for a while now. However, as I was thinking through the architecture I really don't understand the "How server can identify between which buttons has...
16
by: browntown | last post by:
so I have this application I'm nearly finished with. The only thing the client has requested is the ability to submit the form by pressing "enter". I didn't think this would be a huge pain in the...
3
by: printline | last post by:
Hello All I have a form with multiple submit buttons, where i would like to open in a new window when hitting one of the submit buttons. Can't seem to figure this out according to the code i'm...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.