Files
GPW/GPW_Admin/fasi.aspx.cs
T
2021-01-08 19:39:53 +01:00

34 lines
871 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 GPW_Admin
{
public partial class fasi : BasePage
{
#region Private Methods
private void Mod_pageSize_eh_nuovaSize(object sender, EventArgs e)
{
mod_adminFasi1.doUpdate();
}
#endregion Private Methods
#region Protected Methods
protected void Page_Load(object sender, EventArgs e)
{
// imposto fasi selezionate!
mod_adminFasi1.idxProgetto = memLayer.ML.IntSessionObj("idxProgetto_sel");
mod_adminFasi1.idxCliente = memLayer.ML.IntSessionObj("idxCli_sel");
mod_pageSize.eh_nuovaSize += Mod_pageSize_eh_nuovaSize;
}
#endregion Protected Methods
}
}