当前位置: 技术问答>linux和unix
http报文里的格式问题
来源: 互联网 发布时间:2015-11-29
本文导语: 我给服务端发送如下报文 GET /writfile.asp HTTP/1.0rn Host:192.168.1.182rn User-Agent: Mozila/4.0Http/1.0rn Accept: */*rn Accept-Language:enrn Content-Type:text/htmlrnContent-Length: 30rnConnection: Keep-Alivernrn username=jinqiao&password=1234rn 我需要在writfile.asp中...
我给服务端发送如下报文
GET /writfile.asp HTTP/1.0rn Host:192.168.1.182rn User-Agent: Mozila/4.0Http/1.0rn Accept: */*rn Accept-Language:enrn Content-Type:text/htmlrnContent-Length: 30rnConnection: Keep-Alivernrn username=jinqiao&password=1234rn
我需要在writfile.asp中用request("username"),request("password")来获得客户端发过来得信息,但是得到得是空
谁能给我一段完整的http报文格式 的代码,包括用户名和密码
|
我记得我回复过,不知道你试过行不行?
GET的话变量放在URL后面,POST的才能放在最后。
像这样:
GET /writfile.as?username=jinqiao&password=1234
GET的话变量放在URL后面,POST的才能放在最后。
像这样:
GET /writfile.as?username=jinqiao&password=1234