<%
' HTML content: <img src="barcode.asp?image=1&type=14&data=1234567">
Set Obj = Server.CreateObject("nonnoi_ASPBarcode.ASPBarcode")
Obj.ImageType = request("image")
Obj.BarcodeType = request("type")
Obj.Height = 50
Obj.Data = request("data")
Obj.ShowText = True
Obj.ShowBarcode
set Obj = nothing
%> |