I am creating an .aspx page that displays a summary of all the collected information from a user, which then posts to a credit card gateway. I need 2 form tags:
<form runat="server">
</form>
and
<form> action=" method="post">
</form>
i'm using a service called yourpay.com
yourpay.com looks for certain text fields inside the 2nd form tags (Name, Card Number, etc...).
Anyway, the problem is that I don;t know how to populate the text fields inside the 2nd <form> tag which doesn;t have a runat=sever tag.
Thanks
<form runat="server">
</form>
and
<form> action=" method="post">
</form>
i'm using a service called yourpay.com
yourpay.com looks for certain text fields inside the 2nd form tags (Name, Card Number, etc...).
Anyway, the problem is that I don;t know how to populate the text fields inside the 2nd <form> tag which doesn;t have a runat=sever tag.
Thanks