a303817f4d
aggiunta gestione matr operatori x CodSogg
32 lines
953 B
C#
32 lines
953 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
using SteamWare;
|
|
|
|
namespace GMW
|
|
{
|
|
public partial class GestMatrUser : System.Web.UI.Page
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
if (!Page.IsPostBack)
|
|
{
|
|
mod_righePag1.numRowPag = memLayer.ML.CRI("_righeDataGridShort");
|
|
mod_GestMatrUser.pageSize = mod_righePag1.numRowPag;
|
|
}
|
|
mod_righePag1.eh_newNum += mod_righePag1_eh_newNum;
|
|
}
|
|
/// <summary>
|
|
/// aggiornato numero righe datagrid... aggiorno visualizzazione
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
void mod_righePag1_eh_newNum(object sender, EventArgs e)
|
|
{
|
|
mod_GestMatrUser.pageSize = mod_righePag1.numRowPag;
|
|
}
|
|
}
|
|
} |