Function Bytes2bStr(vin)
        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    
        Bytes2bStr = StringReturn
End Function 
Function SendToSp(PostUrl)
IsSuccess="" 
           Server.ScriptTimeOut=144000      
       Set PostMobile = CreateObject("Microsoft.XMLHTTP")
           With PostMobile
      .Open "get", PostUrl, False, "",""  
      .Send 
       IsSuccess= .Responsebody 
  End With 
          Set Retrieval = Nothing
SendToSp=trim(IsSuccess)
End Function Const adTypeBinary = 1
Const adTypeText = 2