请问ASP自动生成HTML静态页面问题(如果设置保存为UTF-8) 150
FunctiongetHTTPPage(Path)t=GetBody(Path)getHTTPPage=BytesToBstr(t,"utf-8")Endfunction...
Function getHTTPPage(Path)
t = GetBody(Path)
getHTTPPage=BytesToBstr(t,"utf-8")
End function
Function GetBody(strUrl)
dim objXmlHttp
set objXmlHttp = Server.CreateObject("Microsoft.XMLHTTP")
objXmlHttp.open "GET",strUrl,false
objXmlHttp.send()
GetBody= objXmlHttp.responseBody
set objXmlHttp=nothing
End Function
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
'response.write BytesToBstr
objstream.Close
set objstream = nothing
End Function
Function Newstring(wstr,strng)
Newstring=Instr(lcase(wstr),lcase(strng))
if Newstring<=0 then Newstring=Len(wstr)
End Function
Dim wstr,str,url,start,over,dtime
url="http://127.0.0.1/index.asp"
wstr=getHTTPPage(url)
Set fso = CreateObject("Scripting.FileSystemObject_skvna")
Set txt=fso.OpenTextFile(server.mappath("/index.html"),2,True)
txt.WriteLine(wstr)
txt.Close
Set txt = Nothing
Set fso = Nothing
response.write "/index.html 创建成功!"+cstr(now())
response.write "<br>"
请问ASP自动生成HTML静态页面问题(如果设置保存为UTF-8编码)??
我用的是自动生成页面.而保存的文件编码是ANSI
如何才能保存文件编码是UTF-8
模版中本肯定是用utf-8的
我要的是生成保存下来的文件是utf-8格式的
期待更好的方法 展开
t = GetBody(Path)
getHTTPPage=BytesToBstr(t,"utf-8")
End function
Function GetBody(strUrl)
dim objXmlHttp
set objXmlHttp = Server.CreateObject("Microsoft.XMLHTTP")
objXmlHttp.open "GET",strUrl,false
objXmlHttp.send()
GetBody= objXmlHttp.responseBody
set objXmlHttp=nothing
End Function
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
'response.write BytesToBstr
objstream.Close
set objstream = nothing
End Function
Function Newstring(wstr,strng)
Newstring=Instr(lcase(wstr),lcase(strng))
if Newstring<=0 then Newstring=Len(wstr)
End Function
Dim wstr,str,url,start,over,dtime
url="http://127.0.0.1/index.asp"
wstr=getHTTPPage(url)
Set fso = CreateObject("Scripting.FileSystemObject_skvna")
Set txt=fso.OpenTextFile(server.mappath("/index.html"),2,True)
txt.WriteLine(wstr)
txt.Close
Set txt = Nothing
Set fso = Nothing
response.write "/index.html 创建成功!"+cstr(now())
response.write "<br>"
请问ASP自动生成HTML静态页面问题(如果设置保存为UTF-8编码)??
我用的是自动生成页面.而保存的文件编码是ANSI
如何才能保存文件编码是UTF-8
模版中本肯定是用utf-8的
我要的是生成保存下来的文件是utf-8格式的
期待更好的方法 展开
5个回答
2009-02-23 · 知道合伙人互联网行家
关注
展开全部
要处理编码的话,写入文件应该使用adodb.stream对象,用它的saveto保存文件。在保存之前先设置objstream.Charset = "UTF-8"
不要使用FSO对象。
不要使用FSO对象。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Body = GetBody(URL)
Body = BytesToBstr(ListBody,"utf-8")
Set TxtFile = Fso.CreateTextFile(filename,true,true)
TxtFile.Write(Body)
结合上面的代码,用这4句就可以了!
Body = BytesToBstr(ListBody,"utf-8")
Set TxtFile = Fso.CreateTextFile(filename,true,true)
TxtFile.Write(Body)
结合上面的代码,用这4句就可以了!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<%@ page charset=UTF-8"%>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2009-02-23
展开全部
把你的ASP文件另存为UTF8的,数据库也是这个编码
模板中的<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />也得有
模板中的<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />也得有
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2009-02-24
展开全部
用记事本(或者其他编译器)把这段代码另存为编码为utf-8的文件就可以
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询