Hey guys I had an bug where my query string data wasn't coming through when I passed odd characters through the query string. In my specific case I was trying to pass "&" through. Since this is the delimiter for the query string it only sees part of the data on the other side.
ex
someaddress?Manu=O&K
The other side sees Manu=O
I remembered seeing a method that took care of that for me, so after a bit of searching I came across HttpUtility.UrlEncode("String" My address line now looks like this
"someaddress?Manu=" + HttpUtility.UrlEncode("0&K"
Works just dandy. Hope you find it usefull
That'l do donkey, that'l do
Mark
If you are unsure of forum etiquette check here faq796-2540
ex
someaddress?Manu=O&K
The other side sees Manu=O
I remembered seeing a method that took care of that for me, so after a bit of searching I came across HttpUtility.UrlEncode("String" My address line now looks like this
"someaddress?Manu=" + HttpUtility.UrlEncode("0&K"
Works just dandy. Hope you find it usefull
That'l do donkey, that'l do
Mark
If you are unsure of forum etiquette check here faq796-2540