Public Function GetContent(ByVal url As String)
        On Error Resume Next
        Dim XmlHttp As Object
        XmlHttp = CreateObject("Microsoft.XMLHttp")
        XmlHttp.Open("POST", url, False)
        XmlHttp.Send()

        Dim vs As String
        vs = XmlHttp.responseText
        XmlHttp = Nothing
        GetContent =vs 
    End Function

相关文章:

  • 2021-08-30
  • 2021-12-19
  • 2021-10-15
  • 2021-12-26
  • 2021-08-29
  • 2022-12-23
  • 2022-12-23
  • 2021-09-09
猜你喜欢
  • 2022-03-08
  • 2021-10-02
  • 2022-02-07
  • 2022-01-12
  • 2019-07-01
  • 2022-02-02
  • 2022-12-23
相关资源
相似解决方案