using SteamWare; using System; namespace C_TRACK.WebUserControls { public partial class mod_checkPost : System.Web.UI.UserControl { protected void Page_Load(object sender, EventArgs e) { // verifico di avere CodOpr ins essione... if (CodPost == "") { // mostro warning.. divWarning.Visible = true; // se NON sono in pagina bcode --> rimando a richiesta dichiarazione POSTAZIONE (con BARCODE) if (devicesAuthProxy.pagCorrente != "barcode") { Response.Redirect("~/barcode"); } } else { divWarning.Visible = false; } } /// /// Codice postazione di lavoro /// public string CodPost { get { return memLayer.ML.StringSessionObj("CodPost"); } } } }