using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using SteamWare; using GPW_data; using System.Globalization; namespace GPW_Commesse.WebUserControls { public partial class mod_reportUtenteAD : System.Web.UI.UserControl { /// /// css completo dell'oggetto /// /// /// public string fullCss(object css) { return string.Format("ui-corner-all shadowBox {0}Small", 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; } } }