我正在使用HTTP标头Content-Disposition: form-data
发送一些数据
像这样的东西:
--------------010201080703010401070605 Content-Disposition: form-data; name="age" 25 --------------010201080703010401070605
如何使用VBScript读取此数据? 我试过了:
var_age = Request("age") 'not work
var_age = Request.age 'not work