若需要utf-8格式,請自行將下面的GB2312改成utf-8。
- ' 二進制轉字符串,否則會出現亂碼的!
- Function sTb(vin)
- Const adTypeText = 2
- Dim BytesStream,StringReturn
- Set BytesStream = Server.CreateObject("ADODB.Stream")
- With BytesStream
- .Type = adTypeText
- .Open
- .WriteText vin
- .Position = 0
- .Charset = "GB2312"
- .Position = 2
- StringReturn = .ReadText
- .Close
- End With
- Set BytesStream = Nothing
- sTb = StringReturn
- End Function