E
Elhanan
hi.. i have a dotnet dll meant to be used in aspnet page which outputs
barcode images:
the code to call is this:
BarcodeImaging.UCC128.BarcodeWrite w = new
BarcodeImaging.UCC128.BarcodeWrite(
BarcodeImaging.Barcode128Types.CODE_SET_B );
Bitmap bmp = w.CreateBarcode128("1232");
bmp.Save( Response.OutputStream, System.Drawing.Imaging.ImageFormat.Gif
);
My problem is that i have to use this dll from regular asp, so
a. i have to wrap it in another dotnet dll (becouse of the constructor
which takes paramters)
b. get the response object from the asp page
i don't know how to do b, any ideas?
barcode images:
the code to call is this:
BarcodeImaging.UCC128.BarcodeWrite w = new
BarcodeImaging.UCC128.BarcodeWrite(
BarcodeImaging.Barcode128Types.CODE_SET_B );
Bitmap bmp = w.CreateBarcode128("1232");
bmp.Save( Response.OutputStream, System.Drawing.Imaging.ImageFormat.Gif
);
My problem is that i have to use this dll from regular asp, so
a. i have to wrap it in another dotnet dll (becouse of the constructor
which takes paramters)
b. get the response object from the asp page
i don't know how to do b, any ideas?