SmartHTTP 简易HttpRequest类(ASP)

最简单的调用方法:
response.write SmartHttp("http://www.baidu.com/").send().gettext()

复杂调用
set myhttp = SmartHttp("http://www.baidu.com/s","GET")
myhttp.dataset.append "wd","smarthttp"
myhttp.send()
response.write myhttp.gettext("gbk")

复制代码 代码如下:


你可能感兴趣的:(SmartHTTP 简易HttpRequest类(ASP))