web 2.0

How to used ASP & Tag Form

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

ASP &  Tag Form

ASP &  Tag Form
.
.
.

Download this script.
Download

1 Star2 Stars3 Stars4 Stars5 Stars6 Stars7 Stars8 Stars9 Stars10 Stars (1 votes, average: 1.00 out of 10)
Loading ... Loading ...

Leave a Reply

You must be logged in to post a comment.