using SteamWare; namespace GPW_Admin.WebUserControls { public partial class mod_reportPrj : BaseUserControl { #region Public Methods /// /// css completo dell'oggetto /// /// /// public string fullCss(object css) { return string.Format("ui-corner-all shadowBox {0}", css); } /// /// calcola URL completo del report /// /// /// public string fullUrl(object repUrl) { string answ = ""; try { answ = string.Format(@"{0}{1}", memLayer.ML.confReadString("reportBaseUrl"), repUrl); } catch { } return answ; } #endregion Public Methods } }