Neodynamic Barcode Professional 2.0 for ASP.NET (WebControl)
Microsoft .NET Framework (any version)
Microsoft Visual Studio .NET (any version)
You can render barcode images with transparent background setting Barcode Professional's BackColor property to Transparent. Transparent refers to System.Drawing.Color.Transparent.
If you want that the barcode image is rotated, set the Rotate property to one of the available values. You can rotate the barcode image to 90, 180, and 270 degrees.
In the following sample we're going to create a simple ASP.NET WebForm that shows these features.
Follow these steps
Select Case DropDownList1.SelectedValue
Case "0"
BarcodeProfessional1.Rotate = Rotate.None
Case "90"
BarcodeProfessional1.Rotate = Rotate.Degree90
Case "180"
BarcodeProfessional1.Rotate = Rotate.Degree180
Case "270"
BarcodeProfessional1.Rotate = Rotate.Degree270
End Select
switch(DropDownList1.SelectedValue)
{
case "0":
BarcodeProfessional1.Rotate = Rotate.None;
break;
case "90":
BarcodeProfessional1.Rotate = Rotate.Degree90;
break;
case "180":
BarcodeProfessional1.Rotate = Rotate.Degree180;
break;
case "270":
BarcodeProfessional1.Rotate = Rotate.Degree270;
break;
}
That's it. Build the ASP.NET Web Application and run it.
We provide best-in-class customer service and support directly from members of our dev team! If we are available when you contact us, you will get a response in few minutes; otherwise the maximum turnaround is 24hs in most cases.