Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Classic ASP) Appending Strings to BinDataDemonstrates appending strings to a BinData..
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> </head> <body> <% ' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.BinData") set binData1 = Server.CreateObject("Chilkat.BinData") ' Append a string using a 1-byte per char encoding success = binData1.AppendString("This is a test","windows-1252") Response.Write "<pre>" & Server.HTMLEncode( binData1.GetEncoded("hex")) & "</pre>" ' The bytes contained within the binData1 (in hex) are: 54,68,69,73,20,69, ... ' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.BinData") set binData2 = Server.CreateObject("Chilkat.BinData") ' Append a string using a 2-byte per char encoding success = binData2.AppendString("This is a test","utf-16") Response.Write "<pre>" & Server.HTMLEncode( binData2.GetEncoded("hex")) & "</pre>" ' The bytes contained within the binData2 (in hex) are: 54,00,68,00,69,00,73,00,20,00,69,00, ... %> </body> </html> |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.