I have a bit of a dilemma that I really could use some help with please. You see I need to copy the data from a web page into a worksheet and am having some dilemma with the following code block using XML 6.0
Dim httpRequest As XMLHTTP
Set httpRequest = New XMLHTTP
httpRequest.Open "GET", URL, False
httpRequest.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"
httpRequest.send ""
At this point I have a Data Object to catch the data. 99 out of 100 times everything works great. Unfortunately this particular URL string has a "#" in it and it keeps getting converted to "%23" so I keep getting the wonderful error 404. The # MUST be in the URL. There is no other address or way to get to it than to include the #.
Example:
http://www.thisaddress.com/MovingFoward/#/Facility94
converts to and tries to pull from
http://www.thisaddress.com/MovingFoward/%23/Facility94
How does one go about preventing any kind of string character conversion?