Sample code for 30+ languages & platforms
Classic ASP

Demonstrate Binary Data Encoding Methods

Demonstrates binary data encoding methods.

Note: This example requires Chilkat v9.5.0.64 or later.

Chilkat Classic ASP Downloads

Classic ASP
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<%
set binData = Server.CreateObject("Chilkat.BinData")

' Append 10 bytes: 00, 01, 02, 03, 04, 05, 06, 07, 08, 09
success = binData.AppendEncoded("00010203040506070809","hex")

' Show that binData contains 10 bytes.
Response.Write "<pre>" & Server.HTMLEncode( "num bytes = " & binData.NumBytes) & "</pre>"

' Get as base64
Response.Write "<pre>" & Server.HTMLEncode( "base64: " & binData.GetEncoded("base64")) & "</pre>"

' Get a chunk of the binary data.
' The 1st byte is at index 0.
' The output should be "02030405"
offset = 2
numBytes = 4
Response.Write "<pre>" & Server.HTMLEncode( "chunk: " & binData.GetEncodedChunk(offset,numBytes,"hex")) & "</pre>"

' Copy the bytes to a StringBuilder using the base64url encoding
set sb = Server.CreateObject("Chilkat.StringBuilder")
success = binData.GetEncodedSb("base64url",sb)
Response.Write "<pre>" & Server.HTMLEncode( "base64url: " & sb.GetAsString()) & "</pre>"

' Remove a chunk from the binary data
offset = 2
numBytes = 4
success = binData.RemoveChunk(offset,numBytes)
' The bytes remaining are 00,01,06,07,08,and 09
Response.Write "<pre>" & Server.HTMLEncode( "after removing chunk: " & binData.GetEncoded("hex")) & "</pre>"

%>
</body>
</html>