Files
SSC/CMS_SC/AnagSchedeColl.aspx.cs
Samuele E. Locatelli ad5ac5a226 inizio udpoate filemanager
2018-02-21 13:51:38 +01:00

33 lines
819 B
C#

using SteamWare;
using System;
using System.Web.UI;
namespace CMS_SC
{
public partial class AnagSchedeColl : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
((Bootstrap)this.Master).showSearch = true;
mod_righePag.numRowPag = 20;
mod_anagSchedeColl.pageSize = mod_righePag.numRowPag;
}
mod_righePag.eh_newNum += mod_righePag_eh_newNum;
}
/// <summary>
/// wrapper traduzione
/// </summary>
/// <param name="lemma"></param>
/// <returns></returns>
public string traduci(string lemma)
{
return user_std.UtSn.Traduci(lemma);
}
void mod_righePag_eh_newNum(object sender, EventArgs e)
{
mod_anagSchedeColl.pageSize = mod_righePag.numRowPag;
}
}
}