亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

BytesToBstr獲取的源碼轉(zhuǎn)換為中文的代碼

 更新時(shí)間:2007年09月01日 22:03:33   作者:  
'==================================================
'函數(shù)名:BytesToBstr
'作  用:將獲取的源碼轉(zhuǎn)換為中文
'參  數(shù):Body ------要轉(zhuǎn)換的變量
'參  數(shù):Cset ------要轉(zhuǎn)換的類型
'==================================================
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

相關(guān)文章

最新評(píng)論