46 lines
1.1 KiB
C#
46 lines
1.1 KiB
C#
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_Admin.WebUserControls
|
|
{
|
|
public partial class mod_reportPrj : BaseUserControl
|
|
{
|
|
#region Public Methods
|
|
|
|
/// <summary>
|
|
/// css completo dell'oggetto
|
|
/// </summary>
|
|
/// <param name="url"></param>
|
|
/// <returns></returns>
|
|
public string fullCss(object css)
|
|
{
|
|
return string.Format("ui-corner-all shadowBox {0}", css);
|
|
}
|
|
|
|
/// <summary>
|
|
/// calcola URL completo del report
|
|
/// </summary>
|
|
/// <param name="repUrl"></param>
|
|
/// <returns></returns>
|
|
public string fullUrl(object repUrl)
|
|
{
|
|
string answ = "";
|
|
try
|
|
{
|
|
answ = string.Format(@"{0}{1}", memLayer.ML.confReadString("reportBaseUrl"), repUrl);
|
|
}
|
|
catch
|
|
{ }
|
|
return answ;
|
|
}
|
|
|
|
#endregion Public Methods
|
|
}
|
|
} |