How to used ASP & Input Text Field/Textbox This the tutorial/example a scripts how to use ASP & Input Text Field/Textbox
ShotDev Focus:
- ASP & Input Text Field/Textbox
Example
asp_textbox1.asp
<html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <form action="asp_textbox2.asp" method="post" name="form1"> <input type="text" name="txtSiteName"> <input name="btnSubmit" type="submit" value="Submit"> </form> </body> </html>
asp_textbox2.asp
<html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <% Response.write Request.Form("txtSiteName") %> </body> </html>
Create a asp file and save to path root-path/myasp/
Run
http://localhost/myasp/asp_textbox1.asp
Screenshot