I am using the following method to access a server-based file.
Expand|Select|Wrap|Line Numbers
- Dim myURL As HttpWebRequest
- myURL = WebRequest.Create("https://www.abc.efg/data")
- myURL.Method = "POST"
- myURL.ContentType = "application/json"
- etc...
If this is possible, do I need to alter the code in some way? Such as Dim myURL As NEW HttpWebRequest = storedURL?
Thanks!