.NET条形码的制作(39码)
<%@ Page Language="C#" CodeBehind="Default.aspx.cs" Inherits="BarCode._Default" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> <style type="text/css"> body { font-size: 12px; font-family: 宋体; } </style> </head> <body> <form id="form1" runat="server"> 39码:<asp:TextBox ID="TextBox_39" runat="server">%91E+</asp:TextBox> <asp:Button ID="Button_39" runat="server" Text="生成条码" OnClick="Button_39_Click" /> <br /> <asp:Literal ID="Literal_39" runat="server"></asp:Literal> </form> </body> </html> 代码 using System; using System.Collections.Generic; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; namespace BarCode { public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { TextBox1.Focus(); TextBox1.Text = ""; Button_39_Click(new object(), new EventArgs()); } protected void Button_39_Click(object sender, EventArgs e) { Literal_39.Text = BarCodeToHTML.get39(TextBox_39.Text.Trim()); } public static string get39(string s)//条形码的字符 { Hashtable ht = new Hashtable(); #region 39码 12位 ht.Add(''A'', "110101001011"); ht.Add(''B'', "101101001011"); ht.Add(''C'', "110110100101"); ht.Add(''D'', "101011001011"); ht.Add(''E'', "110101100101"); ht.Add(''F'', "101101100101"); ht.Add(''G'', "101010011011"); ht.Add(''H'', "110101001101"); ht.Add(''I'', "101101001101"); ht.Add(''J'', "101011001101"); ht.Add(''K'', "110101010011"); ht.Add(''L'', "101101010011"); ht.Add(''M'', "110110101001"); ht.Add(''N'', "101011010011"); ht.Add(''O'', "110101101001"); ht.Add(''P'', "101101101001"); ht.Add(''Q'', "101010110011"); ht.Add(''R'', "110101011001"); ht.Add(''S'', "101101011001"); ht.Add(''T'', "101011011001"); ht.Add(''U'', "110010101011"); ht.Add(''V'', "100110101011"); ht.Add(''W'', "110011010101"); ht.Add(''X'', "100101101011"); ht.Add(''Y'', "110010110101"); ht.Add(''Z'', "100110110101"); ht.Add(''0'', "101001101101"); ht.Add(''1'', "110100101011"); ht.Add(''2'' |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |