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