asp生成html(utf-8)

<%'常用函数'1、输入url目标网页地址,返回值getHTTPPage是目标网页的html代码functiongetHTTPPage(url)dimHttpsetHtt... <%
'常用函数
'1、输入url目标网页地址,返回值getHTTPPage是目标网页的html代码
function getHTTPPage(url)
dim Http
set Http=server.createobject("MSXML2.XMLHTTP")
Http.open "GET",url,false
Http.send()
if Http.readystate<>4 then
exit function
end if
getHTTPPage=bytesToBSTR(Http.responseBody,"utf-8")
set http=nothing
if err.number<>0 then err.Clear
end function

'2、转换乱玛,直接用xmlhttp调用有中文字符的网页得到的将是乱玛,可以通过adodb.stream组件进行转换

Function BytesToBstr(body,Cset)
dim objstream
set 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
set objstream = nothing
End Function

txtURL=CStr(Request.ServerVariables("SCRIPT_NAME"))
n=InStrRev(txtURL,"/") '从右边第一个字符起查找"_"的位置,n为返回值
txtURL=left(txtURL, n)'显示从左边数第"n"个字符前面的字符,
txtURL="http://"&Request.ServerVariables("SERVER_NAME")&""&txtURL&"index.asp"

sText = getHTTPPage(txtURL)
sText=replace(sText,"www.html","../../www.html")
filename=server.MapPath("index.html")

Function WriteToFile (FileUrl, Str, CharSet)
Set stm = CreateObject("Adodb.Stream")
stm.Type = 2
stm.mode = 3
stm.charset = CharSet
stm.Open
stm.WriteText Str
stm.SaveToFile FileUrl, 2
stm.flush
stm.Close
Set stm = Nothing
End Function
WriteToFile filename,sText,"utf-8"
%>
为什么上面的代码生成不了utf-8的html?

sText = getHTTPPage(txtURL)
sText=replace(sText,"www.html","../../www.html")
Set FileObject=Server.CreateObject("Scripting.FileSystemObject")
filename="index.htm"
Set openFile=FileObject.OpenTextfile(server.mapPath(filename),2,true) 'true为不存在自行建立
openFile.writeline(sText)
Set OpenFile=nothing
%>
替换上面生成和写入的代码。,能生成GB2312静态页面

谁能帮我指点下,或者给个生成静态UTF-8的案例
展开
 我来答
海象易宝支付余
2014-08-19 · 超过32用户采纳过TA的回答
知道答主
回答量:37
采纳率:0%
帮助的人:69.9万
展开全部
我又不能在那熊熊的火焰中
因为只有 生命 的手,才能把持你们的心。
应该比工作舒服:
在远处叫
权利是一种折磨,如同卡在
宿舍中纵谈古是;哈哈
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式