Re: Posting to a web page

2010-10-16 Thread Len Morgan
So it's no different than a GET except that it doesn't go in the URL? That's easy! Thanks Sarah, len morgan On 10/16/2010 7:18 PM, Sarah Reichelt wrote: Len you need to pair up the variable names with their values. Something like this: put "username="& URLencode(tUserName) into myDataStr

Re: Posting to a web page

2010-10-16 Thread Sarah Reichelt
Len you need to pair up the variable names with their values. Something like this: put "username=" & URLencode(tUserName) into myDataString put "&password=" & URLencode(tPassword) after myDataString etc, etc. Then you can use the post command as you have it below. Cheers, Sarah On Sun, Oct 1