Sample code for 30+ languages & platforms
Classic ASP

Appending Strings to BinData

Demonstrates appending strings to a BinData..

Chilkat Classic ASP Downloads

Classic ASP
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<%
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, ...

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>