The ASP collects the data and automatically determines the page encoding and conversion

Source: Internet
Author: User

In doing collection of friends will know that often come across the content is garbled, below we will look at an ASP tutorial to collect data and automatically judge the page encoding and conversion bar.

<% @LANGUAGE = "JAVASCRIPT" codepage= "65001"%>
<meta http-equiv= " Content-type "content=" text/html; Charset=utf-8 ">
<title>asp automatically determines page encoding and conversion </title>
<%server.scripttimeout= 9999999;
function send_request (URL) {
var codedtext;
Http_request = Server.CreateObject ("Microsoft.XMLHTTP");
Http_request. Open ("Get", url,false);
Http_request. Send (NULL);
if (http_request. ReadyState = = 4) {
//Automatic decision encoding start
var charresult = http_request. Responsetext.match (/charset= (s+) ">/i");
if (charresult!= null) {
var Cset = charresult[1];
}else{cset = "gb2312"}//use gb2312 encoding for Web sites that are not available, and can automatically change
//automatic judgment encoding end
Codedtext = Bytestobstr (http_request. Responsebody,cset);
}else{
Codedtext = "Erro";
}
Return (Codedtext);
}
Function Bytestobstr (body,cset) {
var objstream;
objstream = Server.CreateObject ("ADODB.stream");
Objstream. Type = 1;
objstream. Mode = 3;
Objstream. Open ();
Objstream. Write (body);
Objstream. Position = 0;
Objstream. Type = 2;
Objstream. Charset = Cset;
Bytestobstr = objstream. Readtext;
Objstream. Close;
return (BYTESTOBSTR);
}%>
<body>
<%response.write (send_request ("http://www.3lian.com/404.htm"))%>
</ Body>

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.