using SteamWare; using System; namespace MP_ADM { public partial class BCode : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { checkEnabled(); string codPre = memLayer.ML.CRS("OptAdmBCode_CodPre"); mod_barcode.codOrdPre = codPre != "" ? codPre : "OPR"; } private void checkEnabled() { bool OptAdmBCodeEnabled = memLayer.ML.CRB("OptAdmBCodeEnabled"); divContent.Visible = OptAdmBCodeEnabled; string messaggio = ""; if (!OptAdmBCodeEnabled) { messaggio = "Attenzione: Gestione BarCode disabilitata"; } lblDataImportOut.Text = messaggio; } } }