To store the value of barcode to database, you need to master the sql statement and how to connect sql server with ADO.NET(I just guess you m mightn't kown the both object):
<div>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</div> <div> </div> <div><html></div> <div><head runat="server"></div> <div><body></div>
<div> </div> <div>COUPOUN TYPE:<asp:RadioButton ID="RadioButton1" runat="server" ForeColor="#006600" GroupName="coupon" Text="QR Code" /></div> <div>
<div></div> <div>Coupon value type:<asp:DropDownList ID="DropDownList1" runat="server" Height="24px" style="color: #0000FF; background-color: #66CCFF" Width="147px"></div>
<div> <asp:ListItem>Select type of value</asp:ListItem></div>
<div> <asp:ListItem>$</asp:ListItem></div>
<div> <asp:ListItem>%</asp:ListItem></div>
<div> </asp:DropDownList></div>
<div>Coupon value:<asp:TextBox ID="TextBox1" runat="server" Height="24px" style="color: #0000FF"></asp:TextBox></div>
<div></div>
<div><asp:Button ID="Button1" runat="server" BackColor="#FF99CC" BorderStyle="Double" ForeColor="#003300"
Height="31px" Text="Generate Coupons" /></div> </div> <div></body></div> <div> </div> <div></head></div> <div></html> <div>Coupon type: check boxes/radio button with options to choose QRCode, BarCode, Coupon code</div> <div>Coupon value type: Drop down list with $, %</div> <div>Coupon value: text box to enter value</div> <div></div>
<div>Add button "Generate Coupons". </div> <div></div> <div>On click of this button</div> <div> text box with generated coupon code to be pasted on client mobile page</div>
</div>
shivanand G ...
Participant
1763 Points
534 Posts
how to generate the barcode, give sample code and how to store value to the database.
Mar 13, 2012 11:08 AM|LINK
Hi
how to generate the barcode, give sample code and how to store value to the database.
shivanand.G.N (shivu.betta@gmail.com)
madan535
Contributor
3217 Points
1179 Posts
Re: how to generate the barcode, give sample code and how to store value to the database.
Mar 13, 2012 11:22 AM|LINK
Refer this
http://www.barcodelib.com/net_barcode/main.html
aspnet2sams
Participant
1746 Points
541 Posts
Re: how to generate the barcode, give sample code and how to store value to the database.
Mar 13, 2012 11:28 AM|LINK
check this:
http://forum.as.net/1779714.aspx alongwith the sample given in thread.
shivanand G ...
Participant
1763 Points
534 Posts
Re: how to generate the barcode, give sample code and how to store value to the database.
Mar 13, 2012 11:50 AM|LINK
plz can u send the code .....................
shivanand.G.N (shivu.betta@gmail.com)
Mamba Dai - ...
All-Star
23531 Points
2683 Posts
Microsoft
Re: how to generate the barcode, give sample code and how to store value to the database.
Mar 19, 2012 10:15 AM|LINK
Hi,
How to generate barcode please check this thread solved:
http://social.msdn.microsoft.com/Forums/en-US/csharpgeneral/thread/9df63d27-c5aa-4bc4-9319-18b486c6261e
To store the value of barcode to database, you need to master the sql statement and how to connect sql server with ADO.NET(I just guess you m mightn't kown the both object):
http://msdn.microsoft.com/en-us/library/h43ks021.aspx
http://msdn.microsoft.com/en-us/library/ms365303.aspx
Feedback to us
Develop and promote your apps in Windows Store
Aspper ASP
Member
22 Points
12 Posts
Re: how to generate the barcode, give sample code and how to store value to the database.
Sep 07, 2012 09:29 AM|LINK
It is easy to make barcode on asp.net web applications using barcode control. Here is some barcode codes of C# I used:
BarCode qrcode = new BarCode();
qrcode.Symbology = Aspper.Barcode.Symbology.QRCode;
qrcode.CodeToEncode = "QRCode";
qrcode.X = 4;
qrcode.Y = 4;
qrcode.generateBarcodeToImageFile("D://qrcode.png");
You may update the name space and control name accordingly based on your own componnet.
ASP.NET barcode control @ aspper
ANILBABU
Member
58 Points
99 Posts
Re: how to generate the barcode, give sample code and how to store value to the database.
Nov 20, 2012 05:56 AM|LINK
</div> <div><html></div> <div><head runat="server"></div> <div><body></div> <div>
</div> <div>COUPOUN TYPE:<asp:RadioButton ID="RadioButton1" runat="server" ForeColor="#006600" GroupName="coupon" Text="QR Code" /></div> <div> <div></div> <div>Coupon value type:<asp:DropDownList ID="DropDownList1" runat="server" Height="24px" style="color: #0000FF; background-color: #66CCFF" Width="147px"></div> <div> <asp:ListItem>Select type of value</asp:ListItem></div> <div> <asp:ListItem>$</asp:ListItem></div> <div> <asp:ListItem>%</asp:ListItem></div> <div> </asp:DropDownList></div> <div>Coupon value:<asp:TextBox ID="TextBox1" runat="server" Height="24px" style="color: #0000FF"></asp:TextBox></div> <div></div> <div><asp:Button ID="Button1" runat="server" BackColor="#FF99CC" BorderStyle="Double" ForeColor="#003300" Height="31px" Text="Generate Coupons" /></div> </div> <div></body></div> <div>
</div> <div></head></div> <div></html>
<div>Coupon type: check boxes/radio button with options to choose QRCode, BarCode, Coupon code</div> <div>Coupon value type: Drop down list with $, %</div> <div>Coupon value: text box to enter value</div> <div></div> <div>Add button "Generate Coupons". </div> <div></div> <div>On click of this button</div> <div> text box with generated coupon code to be pasted on client mobile page</div> </div>
barcode addi...
Member
4 Points
2 Posts
Re: how to generate the barcode, give sample code and how to store value to the database.
Dec 21, 2012 03:15 AM|LINK
I thought you should need a barcode generator SDK, or maybe you could find answers by browsing this website. http://www.barcodelib.com/csharp/