28 lines
652 B
C#
28 lines
652 B
C#
using SteamWare;
|
|
using System;
|
|
|
|
namespace CMS_SC
|
|
{
|
|
public partial class FileManager : System.Web.UI.Page
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
if (!Page.IsPostBack)
|
|
{
|
|
((Empty)this.Master).showSearch = false;
|
|
}
|
|
// imposto filtKey
|
|
mod_fileUpload.enableMod = memLayer.ML.QSB("enableMod");
|
|
mod_fileUpload.filtKey = memLayer.ML.QSS("filtKey");
|
|
}
|
|
/// <summary>
|
|
/// wrapper traduzione
|
|
/// </summary>
|
|
/// <param name="lemma"></param>
|
|
/// <returns></returns>
|
|
public string traduci(string lemma)
|
|
{
|
|
return user_std.UtSn.Traduci(lemma);
|
|
}
|
|
}
|
|
} |