Link to home
Start Free TrialLog in
Avatar of Camillia
CamilliaFlag for United States of America

asked on

Coding "form action" in code behind

Is there anyway to code these lines in code behind, instead of the HTML page?

<form action="https://globalgatewaye4.firstdata.com" method="post">
 <label>x_login</label> <input name="x_login" value="<%= x_login %>" /> <label>x_fp_sequence</label>
 <input name="x_fp_sequence" value="<%= x_fp_sequence %>" />
..........

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Roopesh Reddy
Roopesh Reddy
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Camillia

ASKER

how do I submit the form? just by loading the page, it's submitted?
Hi,

You may have to add an Button, when it clicks, the page will be submitted!

<input type="submit" runat="server" value="submit" />

Open in new window


OR

You can use JavaScript to submit the page!
 
<script type="text/javascript">
document.forms[0].submit();
</script>

Open in new window


Hope it helps u...