How to used ASP & Tag Form This the tutorial/example a scripts how to use ASP & Tag Form
ShotDev Focus:
- ASP & Tag Form
Example
asp_form1.asp
<html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <form action="php_post.php" method="post" name="form1"> <input name="txt1" type="text"> <input name="txt2" type="text"> <input name="btnSubmit" type="submit" value="Submit"> </form> </body> </html>
asp_form2.asp
<html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <% Response.write("<form action=""php_post.php"" method=""post"" name=""form1"">") Response.write("<input name=""txt1"" type=""text"">") Response.write("<input name=""txt2"" type=""text""><br>") Response.write("<input name=""btnSubmit"" type=""submit"" value=""Submit"">") Response.write("</form>") %> </body> </html>
Create a asp file and save to path root-path/myasp/
Run
http://localhost/myasp/asp_form.asp
Screenshot