You need to "escape" the line you are sending. You basically convert all non alpanumeric characters to their hex code equivalent. For example a space should be %20. Your line should be "Address=1%20Main%20Street".
There is a function in javascript that does this (escape and unescape). There are various routines for doing this in VB that I can point you to. Just let me know.
I agree. This article is excellent. Excatly what I was looking for!!
Brian
Quote:[1]Posted by dgrenader on 3 Apr 2003 05:39 PM[/1]
Great article! All works, except when I send a FORM field with white space it disappears.
So when objXMLHTTP.Send reqStr "Address=1 Main Street" is processed by the server, I get "1MainStreet" with white-space gone.
What am I doing wrong? Thanks!