473,395 Members | 1,702 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,395 software developers and data experts.

POST url based upon item selected in dropdown list (sounds Simple)

Is this possible? I have three items in drop down "Select Payment
Type", "Credit Card" and "Check". if user select Credit card then i
need to post the form variables to different URL than check selecting.

Thanks for your help in advance.

suresh
....... Method="POST", Action= & url ........

IF (dropdown.index =1)
{
url = "http://somebank.com/1/post.asp"
}

IF (dropdown.index =2)
{
url = "http://somebank.com/2/post.asp"

}

Oct 18 '06 #1
5 3130
Using client-side script, you can accomplish this, but be very, very certain
that you want to rely on this instead of creating a server-side solution...
<html>
<body>
<form id="x" method="post" action="default.asp">
<select name="s"
onchange="document.getElementById('x').action=this .value;">
<option value="default.asp">Select Payment Type</option>
<option value="cc.asp">Credit Card</option>
<option value="check.asp">Check</option>
</select>
</form>
Test it:
<input type="button" onclick="alert(document.getElementById('x').action );"
value="Show Form Action" />
</body>

Ray at work

"SA SA" <su*******@gmail.comwrote in message
news:11**********************@e3g2000cwe.googlegro ups.com...
Is this possible? I have three items in drop down "Select Payment
Type", "Credit Card" and "Check". if user select Credit card then i
need to post the form variables to different URL than check selecting.

Thanks for your help in advance.

suresh
...... Method="POST", Action= & url ........

IF (dropdown.index =1)
{
url = "http://somebank.com/1/post.asp"
}

IF (dropdown.index =2)
{
url = "http://somebank.com/2/post.asp"

}

Oct 19 '06 #2
Ray,
thanks for your tip however you planted doubt on my mind about relaying
on client side script. This is what i have so far works well except
when user presses back botton everything out of wack. Is there way to
do this on server side?

thanks
sa
<html>

<form name="t1" id="x" method="post" action="refresh" onsubmit=" return
confirm1_dropdown()">

<select name="s"
onchange="document.getElementById('x').action=this .value;">
<option value="default.asp">Select Payment Type</option>
<option value="https://somebank.com/Pay/1/Gateway.aspx">Credit
Card</option>
<option value="https://somebank.com/Pay/2/Gateway.aspx">Check
Payment</option>
</select>

<input type="hidden" Value ="Account Balance"
name="PMT_TYPE_DESC" >
<input type="hidden" Value ="701" name="PMT_TYPE" >
<input type="hidden" Value ="701" name="AMOUNT_PAID" >
<input type="hidden" Value ="2718" name="ACCOUNT" >
<input type="hidden" Value ="ABC" name="STUDENT_LASTNAME" >
<p>&nbsp;
<input type="submit" value="Pay Now" ID ="x" ></p>
</form>
<script Language="JavaScript">
<!--
function confirm1_dropdown()
{
if (t1.s.selectedIndex == 0)
{
alert("Please select a payment type.");
t1.s.focus();
return (false);
}
return (true);
}

//--></script>

</html>

Oct 19 '06 #3
Are you posting the form data to a third party site, meaning you don't have
control over the server that needs to receive the post data?

Ray at work
"SA SA" <su*******@gmail.comwrote in message
news:11*********************@e3g2000cwe.googlegrou ps.com...
Ray,
thanks for your tip however you planted doubt on my mind about relaying
on client side script. This is what i have so far works well except
when user presses back botton everything out of wack. Is there way to
do this on server side?

thanks
sa
<html>

<form name="t1" id="x" method="post" action="refresh" onsubmit=" return
confirm1_dropdown()">

<select name="s"
onchange="document.getElementById('x').action=this .value;">
<option value="default.asp">Select Payment Type</option>
<option value="https://somebank.com/Pay/1/Gateway.aspx">Credit
Card</option>
<option value="https://somebank.com/Pay/2/Gateway.aspx">Check
Payment</option>

Oct 19 '06 #4
That's true

Ray Costanzo [MVP] wrote:
Are you posting the form data to a third party site, meaning you don't have
control over the server that needs to receive the post data?

Ray at work
"SA SA" <su*******@gmail.comwrote in message
news:11*********************@e3g2000cwe.googlegrou ps.com...
Ray,
thanks for your tip however you planted doubt on my mind about relaying
on client side script. This is what i have so far works well except
when user presses back botton everything out of wack. Is there way to
do this on server side?

thanks
sa
<html>

<form name="t1" id="x" method="post" action="refresh" onsubmit=" return
confirm1_dropdown()">

<select name="s"
onchange="document.getElementById('x').action=this .value;">
<option value="default.asp">Select Payment Type</option>
<option value="https://somebank.com/Pay/1/Gateway.aspx">Credit
Card</option>
<option value="https://somebank.com/Pay/2/Gateway.aspx">Check
Payment</option>
Oct 19 '06 #5
In that case, I swing back to the other side and suggest that you DO rely on
client-side script. Either that, or have the user select his payment type
on one page, post that data back to YOUR server, and then present him with a
form with the appropriate action value already set based on server-side
logic.

Ray at work

"SA SA" <su*******@gmail.comwrote in message
news:11**********************@e3g2000cwe.googlegro ups.com...
That's true

Ray Costanzo [MVP] wrote:
>Are you posting the form data to a third party site, meaning you don't
have
control over the server that needs to receive the post data?

Ray at work
"SA SA" <su*******@gmail.comwrote in message
news:11*********************@e3g2000cwe.googlegro ups.com...
Ray,
thanks for your tip however you planted doubt on my mind about relaying
on client side script. This is what i have so far works well except
when user presses back botton everything out of wack. Is there way to
do this on server side?

thanks
sa
<html>

<form name="t1" id="x" method="post" action="refresh" onsubmit=" return
confirm1_dropdown()">

<select name="s"
onchange="document.getElementById('x').action=this .value;">
<option value="default.asp">Select Payment Type</option>
<option value="https://somebank.com/Pay/1/Gateway.aspx">Credit
Card</option>
<option value="https://somebank.com/Pay/2/Gateway.aspx">Check
Payment</option>

Oct 19 '06 #6

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

Similar topics

5
by: Kris Rockwell | last post by:
Hello (again), I have gotten the dropdown list functionality to work through a few tricks (probably not the most efficient, but it works) but I am not sure how to set the default selected value....
5
by: Kris Rockwell | last post by:
Hello (again), I have gotten the dropdown list functionality to work through a few tricks (probably not the most efficient, but it works) but I am not sure how to set the default selected value....
7
by: dickson.matt | last post by:
Ok simple question (that I feel dumb for asking).... I have created a user control (ascx page) that contains a dropdown list. The problem I am having is that when the postback occurs I can...
6
by: yasodhai | last post by:
Hi, I used a dropdown control which is binded to a datagrid control. I passed the values to the dropdownlist from the database using a function as follows in the aspx itself. <asp:DropDownList...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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
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: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

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.