VB6中POST问题
哪位高手能给提供点资料?谢谢!从最基本的概念开始
Private Sub 发POST包2(数据 As String, URL As String) On Error Resume Next Dim poststr() As Byte poststr = StrConv(数据, vbFromUnicode) Web1.Navigate URL, , , poststr, "Content-Type: application/x-www-form-urlencoded" End Sub