using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using SteamWare;
namespace GPW_Admin
{
public class utility
{
///
/// determina se si debba usare CDN x scaricare librerie asp.net ajax
///
public static bool EnableCdnAjax
{
get
{
bool answ = false;
try
{
answ = memLayer.ML.confReadBool("EnableCdnAjax");
}
catch
{
}
return answ;
}
}
///
/// determina se si debba usare CDN x scaricare librerie jquery
///
public static bool EnableCdnJQ
{
get
{
bool answ = false;
try
{
answ = memLayer.ML.confReadBool("EnableCdnJQ");
}
catch
{
}
return answ;
}
}
}
}