PDA

Click to See Complete Forum and Search --> : Http post to asp


sjrigby
May 21st, 2001, 10:53 AM
How do I post a parameter from a VB app running on a client machine to an asp on a server ?

HarryW
May 21st, 2001, 04:54 PM
Fairly easily if you use the GET method for the ASP. Just open an URL with the parameters appended to the end with the usual ?parm1=val1&parm2=val2 etc string on the end. Then you can use Request.QueryString() to get whichever parameter you want from the URL the VB app requests.