I am using aspose.barcode in an application developed in ASP .NET, the application is supposed to convert an account number into a barcode.
Code (please note that I am not passign any barcode type in my code - i.e. 128a/b, 39 a/b, etc):
aNumber = Request.QueryString("account")
Dim captionA As Caption = New Caption()
captionA.Text = "Account Number"
captionA.TextAlign = System.Drawing.StringAlignment.Near
captionA.Visible = True
BarCodeWebControlAccount.CaptionAbove = captionA
BarCodeWebControlAccount.codetext = aNumber
Dim license As Aspose.BarCode.License = New Aspose.BarCode.License()
license.SetLicense(Server.MapPath("\operations\BarCode\Bin\Aspose.BarCode.lic"))
Question:
1. If you look at the code, I am not passing any information about what type of barcode to be used (i.e. 128 a/b, 39a/b, etc). In this case, what is the barcode that your system uses by default ?
2. Can you explain to me how your system works? I send you the variable's value (account number) and the license information. What happen, in terms of communication back and forth with my page, once it is received from you and how is the information sent back to be displayed in my page?
Thanks for your help,