Getting Started in ASP Classic (as ActiveX)
Free Trial Web API version Licensing Request A Quote
HAVE QUESTIONS OR NEED HELP?SUBMIT THE SUPPORT REQUEST FORM or write email toSUPPORT@BYTESCOUT.COM
The following sample demonstrates how to read barcodes from image in ASP classic using Bytescout BarCode Reader SDK
VB
<% Set bc = Server.CreateObject("Bytescout.BarCodeReader.Reader") bc.BarcodeTypesToFind.Code39 = True bc.ReadFromFile Server.MapPath("BarcodePhoto.jpg") For i = 0 To bc.FoundCount - 1 Response.Write "Found barcode on page #" & CStr(bc.GetFoundBarcodePage(i)) & " with type " & Cstr(bc.GetFoundBarcodeType(i)) & " and value " & bc.GetFoundBarcodeValue(i) Next Set bc = Nothing %>