Files
SSC/CMS_SC/AnagSchedeColl.aspx.cs
T
2015-06-18 17:02:07 +02:00

37 lines
1.0 KiB
C#

using SteamWare;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
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;
}
}
}