程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> ASP編程 >> 關於ASP編程 >> 用ASP生成UTF-8網頁文件的兩種方法

用ASP生成UTF-8網頁文件的兩種方法

編輯:關於ASP編程
方法一:createtextfile生成文件方法  
復制代碼 代碼如下:
<%function WriteToFile(FileName,FileContent)  
set fso=server.createobject("scripting.filesystemobject")  
set fp=fso.createtextfile(server.mappath(FileName),,True)  
fp.write(FileContent)  
end function%>  

方法二:ADODB.Stream生成文件方法 
復制代碼 代碼如下:
<%Function WriteToFile(FileName,FileContent)  
Set ccObjStream = Server.CreateObject("ADODB.Stream")  
With ccObjStream  
.Type = 2  
.Mode = 3  
.Open  
.Charset = "utf-8"  
.Position = ccObjStream.Size  
.WriteText FileContent  
.SaveToFile FileName,2  
.Close  
End With  
End Function%>
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved