Files
2020-01-02 15:24:31 +01:00

39 lines
679 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace ES3.WebUserControls
{
public partial class cmp_confWeek : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
{
}
/// <summary>
/// Dim pagina
/// </summary>
public int pageSize
{
get
{
return grView.PageSize;
}
set
{
grView.PageSize = value;
doUpdate();
}
}
/// <summary>
/// Forza update controllo
/// </summary>
public void doUpdate()
{
grView.DataBind();
}
}
}