ASP FormsAs of Oct 5, 2005, this forum is now locked. Please use "Classic ASP beginner" at http://p2p.wrox.com/forum.asp?FORUM_ID=54 or "Classic ASP Professional" http://p2p.wrox.com/forum.asp?FORUM_ID=56 instead.
Welcome to the p2p.wrox.com Forums.
You are currently viewing the ASP Forms section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
Sorry if this is a basic thing to do but I am new to ASP. I want to Have a text field that gets its initial value from another form on anther asp page. Please help
Hii runsrealfast!!!
suppose ur first.asp page have form like
<input type=text name=login_name >
<input type=text name=role>
<input type=submit value="Submit" name=saveit>
you can access the values of "login_name" and "role" textboxes in second.asp page using
request("login_name")
and request("role")
Since you want to show this value in second.asp page text box use this code