Avatar of mmalik15
mmalik15
 asked on

Set Post form at run time in classic ASP

In my ASP application on form submit, based on a certain selection inside the dropdownlist I want to post the input to another form. Please see the attached code. The form is posting data to "stage1end_journal_public.asp". But I want to change this form at runtime on a codition.
<FORM NAME="form" METHOD="POST" ACTION="stage1end_journal_public.asp" ONSUBMIT="return validate_form()">

<!-- #Include File="inc/journaldetails.htm" -->

    <TABLE WIDTH="640" CELLPADDING="0" CELLSPACING="0" BORDER="0">
      <TR VALIGN="TOP">
        <TD><HR SIZE="1" COLOR="#000080"> </TD>
      </TR>
    </TABLE>		  
    <TABLE WIDTH="640" CELLPADDING="0" CELLSPACING="0" BORDER="1" 
    BORDERCOLOR="#dfdfdf" BGCOLOR="#efefef">
      <TR>
        <TD>

<!-- Start of Nested Table -->
        
        <TABLE WIDTH="100%" CELLPADDING="4" CELLSPACING="0" BORDER="0">
          <TR>
            <TD width="100"><p><font size="2" face="Arial, Helvetica, sans-serif"><strong><a href="Javascript:history.go(-1);">BACK</a> | <a href="index.asp">EXIT</a></strong></font></p>
            </TD>
            <TD ALIGN="right" VALIGN="TOP">
              <div align="right">
                <INPUT TYPE="submit" VALUE="Submit to Library  &gt;&gt;">
              </div></TD>
          </TR>
        </TABLE>

<!-- Nested Table -->
        
        </TD>
      </TR>
    </TABLE>
    
  <P></P></FORM>

Open in new window

ASPASP.NET

Avatar of undefined
Last Comment
mmalik15

8/22/2022 - Mon
nap0leon

You can update the "action" of your form when the user selects the value from the drop-down using the "onchange" event.  This happens before the form is submitted, not "at run time"... that OK?

<select name="chooseAction" id="chooseAction" onchange="javascript:updateAction();" size="1">
  <option value="0"></option>
  <option value="1">Default Location</option>
  <option value="2">Alternate Location</option>
</select>
<script>
function updateAction(){
            var dropdown = document.getElementById("chooseAction");
            var index = dropdown.selectedIndex;
            var selectedAction = dropdown.options[index].value

            switch (selectedAction){
                case '0':{
                    //no value selected
                    document.form.action = 'stage1end_journal_public.asp';
                    break;
                }
                case '1':{
                    document.form.action = 'stage1end_journal_public.asp';
                    break;
                }
                case '2':{
                    document.form1.action = 'someOtherPage';
                    break;
                }
                default:{
                    document.form.action = 'stage1end_journal_public.asp';
                    break;
                }
            }

}
</script>

Open in new window


You can trim the code above depending on whether you have a blank selection in your drop-down or not... I like to make the examples explicit and let you decide where you want to put error messages or combine the options.
ASKER CERTIFIED SOLUTION
pateljitu

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
mmalik15

ASKER
perfect
Experts Exchange has (a) saved my job multiple times, (b) saved me hours, days, and even weeks of work, and often (c) makes me look like a superhero! This place is MAGIC!
Walt Forbes