|
|
|
|
|
| | |
|
vbscript active server pages ASP vbscript SQL database informix oracle SQL Server Perl CGI Delphi PHP source code code sample samples program CJWSoft ASPProtect ASPBanner ASPClassifieds
(Advanced)
(Components)
(Database)
(General)
(Vbscript)

|
|
Subject: |
Re: form submission |
From: |
Tim |
Date: |
11/29/1999 7:54:39 AM |
IP: |
207.51.162.13 |
Sure you can have more then one form on a page as long as you keep them seperate. Example:
<form method="post" action="youraction1.asp">
</form>
... other code
<form method="post" action="youraction2.asp">
</form>
etc.
If you try to nest forms you will run into problems. Example:
<form method="post" action="youraction1.asp">
<form method="post" action="youraction2.asp">
</form>
</form>
|
Previous Message
|
|
|
|
|
|
|
|
|
|
|
|