zob 0 Posted April 7, 2006 Report Share Posted April 7, 2006 I want to do something like a character creation part to my web page, and I want to know how to put the information from a form into one of my scripts. Quote Link to post Share on other sites
vinphetamin 0 Posted April 13, 2006 Report Share Posted April 13, 2006 if you are using vbscript from within an asp page it is very simple: <% nameGoesHere = request("nameGoesHere") response.write nameGoesHere &"<br />"%><form> <input type=text name="nameGoesHere"> <input type=submit value="Submit"></form> If you are going to stay in html things get a little trickier: <script language="vbscript"><!--document.write(location.search)--></script> The above example brings back the entire querystring. To find specific values of variables you would have to cut it up using functions like split,replace,mid etc. Quote Link to post Share on other sites
zob 0 Posted April 26, 2006 Author Report Share Posted April 26, 2006 okay, thanks a lot. Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.