How can I send a POST HTTP request to a server (in Visual Basic 2010) and then receive the reply into a string.
相关问题
- Angular RxJS mergeMap types
- Scraping all mobiles of Flipkart.com
- 'System.Threading.ThreadAbortException' in
- Google Apps Script: testing doPost() with cURL
- How to instantiate Http service in main.ts manuall
相关文章
- C#使用http访问网络,有办法用指定网卡访问网络嘛?
- vb.net 关于xps文件操作问题
- Checking for DBNull throws a StrongTypingException
- Is a unicode user agent legal inside an HTTP heade
- Is there a google API to read cached content? [clo
- Using the typical get set properties in C#… with p
- git: retry if http request failed
- Flutter - http.get fails on macos build target: Co
You can do this via HttpWebRequest. Just set the HttpWebRequest.Method to "POST".
For details, see the example on the MSDN page for HttpWebRequest.Method. The call to GetReponse will return a WebReponse which includes a Stream. You can then read the string information from the Stream using a StreamReader.