亚洲精品国产中文字幕在线,国偷自产一区二区三区蜜臀,精品久久久国产一区二区色婷婷,成人片免费视频在线观看

點(diǎn)擊這里給我發(fā)消息
幫助中心

工作時(shí)間:8:30 - 17:30

ASP

<%
Function Post(url,data)
	dim Https 
	set Https=server.createobject("MSXML2.XMLHTTP")
	Https.open "POST",url,false
	Https.setRequestHeader "Content-Type","application/x-www-form-urlencoded;charset=UTF-8"
	Https.send data
	if Https.readystate=4 then
		dim objstream 
		set objstream = Server.CreateObject("adodb.stream")
		objstream.Type = 1
		objstream.Mode =3
		objstream.Open
		objstream.Write Https.responseBody
		objstream.Position = 0
		objstream.Type = 2
		objstream.Charset = "utf-8"
		Post = objstream.ReadText
		objstream.Close
		set objstream = nothing
		set https=nothing
	end if
End Function

dim target,post_data
target = "http://sms.106jiekou.com/utf8/sms.aspx"
post_data = "account=&password=&mobile=&content="&Server.URLEncode("您的驗(yàn)證碼是:4557。請(qǐng)不要把驗(yàn)證碼泄露給其他人。如非本人操作,可不用理會(huì)!")

response.Write(Post(target,post_data))
''//請(qǐng)自己解析Post(target,post_data)返回的字符串并實(shí)現(xiàn)自己的邏輯
''100表示成功,其它的參考文檔
%>