.Net Compact Framework 3.5 HTTP POST
问题 I'm writing my first Windows CE app using the .NET Compact Framework v3.5. I need the app to be able to do an HTTP POST to a URL. It appears that the .NET CF does not have System.Web. So, I could use some guidence on how to accomplish and HTTP Posts using the .Net CF. Thanks, Greg 回答1: Does this satisfy your needs? You need to import System.IO System.Net System.Net.HttpWebRequest Try Dim Request As HttpWebRequest = CType(WebRequest.Create("<The server>"), HttpWebRequest) Request