|
|
|
|
|
| | |
|
Active Server Pages ASP a directory of ASP tutorials applications scripts components and articles for the novice to professional developer. 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
|
|
|
|
|
|
|
|
|
|
|
|