code example: Using ASP programming to realize QQ online situation inquiry

Source: Internet
Author: User
Programming | online

The method of this procedure is to use XMLHTTP to read the corresponding HTML code of Tencent website to get the head of QQ, according to this idea, we can also crawl many other website information, such as weather forecast, news and so on.

<script language= "JavaScript" >
!--
function Getfaceimg (Qqcode)
{
var re=new RegExp ("^[1-9]{1}\d+$", "G");
if (! Qqcode! Re.test (Qqcode)) return;
var url= "http://search.tencent.com/cgi-bin/friend/oicq_find?oicq_no=" +qqcode;
var http=new activexobject ("Microsoft.XMLHTTP");
Http.open ("Get", Url,false, "", "");
Http.setrequestheader ("Content-type", "text/html; charset=gb2312 ");
Http.send ();

if (http.status!=200) return;

var Webstr=http.responsetext;
Re=new RegExp ("" (http://img.tencent.com/face/[^ "]+)" "," IG ");
if (Re.test (WEBSTR))
Return "<a Href=" http://search.tencent.com/cgi-bin/friend/user_show_info?ln= "+qqcode+" "Target=_blank title=" QQ: "+ Qqcode+ "" > </a>";

Http=null;
}

document.write ("My QQ Status:" +getfaceimg ("44723461"));
-->
</script>

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.