Files
XPS/project/XPS_deploy/Source/mod_elencoBarcode.ascx.cs
T
samuele a953cbf7fd Update x logging/zipping/cancellazione
git-svn-id: https://keyhammer.ath.cx/svn/XPS/trunk@83 43c8e981-f90d-406c-a89a-24a2c4268d51
2008-11-13 16:06:13 +00:00

23 lines
546 B
C#

using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class mod_elencoBarcode : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
{
}
/// <summary>
/// formatta correttamente per stampa barcode
/// </summary>
/// <param name="valore"></param>
/// <returns></returns>
public string barcodeFormat(object valore)
{
return string.Format("*{0}*", valore);
}
}