how to generate the barcode USING SOME FUNCTIONALITY

Posted by Anilbabu.M under ASP.NET on 11/20/2012 | Points: 10 | Views : 3451 | Status : [Member] | Replies : 8
i HAVE ONE REQUIREMENT LIKE THIS PLZ TELL ME THE CODE HOW TO GENERETE QR CODE PLZ HELP ME ,i DON'T AN IDEA ABOUT GENERETE QR CODE USING ASP.NET

<html>
<head runat="server">
<body>

COUPOUN TYPE:<asp:RadioButton ID="RadioButton1" runat="server" ForeColor="#006600" GroupName="coupon" Text="QR Code" />
Coupon value type:<asp:DropDownList ID="DropDownList1" runat="server" Height="24px" style="color: #0000FF; background-color: #66CCFF" Width="147px">
<asp:ListItem>Select type of value</asp:ListItem>
<asp:ListItem>$</asp:ListItem>
<asp:ListItem>%</asp:ListItem>
</asp:DropDownList>
Coupon value:<asp:TextBox ID="TextBox1" runat="server" Height="24px" style="color: #0000FF"></asp:TextBox>
<asp:Button ID="Button1" runat="server" BackColor="#FF99CC" BorderStyle="Double" ForeColor="#003300" Height="31px" Text="Generate Coupons" />
</body>

</head>
</html>
Coupon type: check boxes/radio button with options to choose QRCode, BarCode, Coupon code
Coupon value type: Drop down list with $, %
Coupon value: text box to enter value
Add button "Generate Coupons".
On click of this button
text box with generated coupon code to be pasted on client mobile page

zzcc


Responses

Posted by: Fundabarcode on: 1/15/2013 [Member] Starter | Points: 25

Up
0
Down
Hello, I got some codes to print QR Code using C#, you may have a try and just change some namespace or some points:

using TarCode.Barcode.Control;

Matrix qrcode = new Matrix();
qrcode.BarcodeType = MatrixBarcode.QRcode;
qrcode.Valid_Data = "tarcode..QRCode";
qrcode.Width_X = 2;
qrcode.WtoH_Ratio = 1;
qrcode.drawToFile("c://qrcode.png");

Codes from: http://www.tarcode.com/barcode-winforms/barcodes/qrcode.html

Hope this helps.


.NET developer for barcode

Anilbabu.M, if this helps please login to Mark As Answer. | Alert Moderator

Posted by: Karl on: 4/7/2013 [Member] Starter | Points: 25

Up
0
Down
Generate barcode 3of9 from web pages in server side using an asp.net barcode control,
http://www.avapose.com/aspnet_barcode/code39_generator.shtml

Anilbabu.M, if this helps please login to Mark As Answer. | Alert Moderator

Posted by: Abby321 on: 4/10/2013 [Member] Starter | Points: 25

Up
0
Down
Hi
I have ever used a ASP.NET QR Code Barcode Generator http://www.barcodelib.com/asp_net/barcode_symbologies/qrcode.html . It's very simple to create barcode images with detailed user guide.

Anilbabu.M, if this helps please login to Mark As Answer. | Alert Moderator

Posted by: Camillem on: 4/23/2013 [Member] Starter | Points: 25

Up
0
Down
Another suggestion is http://www.rasteredge.com/how-to/asp-net-imaging/barcode-generating barcode generator in ASP.NET from google.

look for help

Anilbabu.M, if this helps please login to Mark As Answer. | Alert Moderator

Posted by: Arronlee on: 6/24/2013 [Member] Starter | Points: 25

Up
0
Down
Nice sharing.
Thanks a lot for that.
But I wonder whether the free tools online have as many professional fuctions as the paid ones.
I used to generate and scan Barcode with another third party Barcode SDKhttp://www.yiigo.com/net-document-image-plugin/barcode-plugin/ whose processing way is fast.
It is just one of many but I do appreciate its simple way of processing.
Even though I only tried its free trial package and didn´t check the cost and licensing conditions, it works well.
You can pick one you indeed need if necessary.
And I will try your guys´ sharings later and find more.
Many thanks again.



Best regards,
Arron


Anilbabu.M, if this helps please login to Mark As Answer. | Alert Moderator

Posted by: Mariah on: 8/8/2013 [Member] Starter | Points: 25

Up
0
Down
what I used before was the qr code barcode generator found on google where it tells you the steps to generate
How to Generate QR Code in ASP.NET Web Control

1. Copy "barcode.aspx" and "barcode.aspx.cs" to the target folder
2. Right click in "Toolbox" and select "Choose Items..."
3. Click "Browse..." to locate and select "KeepAutomation.Barcode.Web.dll"
4. Drag and drop "BarCodeControl" from Visual Studio Toolbox into the web form
5. Select QR Code type in "Properties" panel and a QR Code barcode is created
6. Customize its properties in the "Properties" panel
you may check it if you are interested .http://www.keepautomation.com/products/net_barcode_aspnet/barcodes/qrcode.html

Anilbabu.M, if this helps please login to Mark As Answer. | Alert Moderator

Posted by: Marshlsiew on: 10/28/2013 [Member] Starter | Points: 25

Up
0
Down
Here is a good passage about how to create barcode in asp.net:
http://www.onbarcode.com/tutorial/asp-net-barcode-generation.html

Anilbabu.M, if this helps please login to Mark As Answer. | Alert Moderator

Posted by: Makaveiljojo on: 12/23/2013 [Member] Starter | Points: 25

Up
0
Down
I've got a QR code ASP.NET SDK which tells you how to create & resize QR Code in ASP.NET. Check it out, might be helpful:
http://www.keepautomation.com/products/net_barcode_aspnet/qrcode_size_setting.html

Anilbabu.M, if this helps please login to Mark As Answer. | Alert Moderator

Login to post response