Files
GPW/GPW_Admin/WebUserControls/cmp_checkC19.ascx.cs
T
2021-10-20 16:06:35 +02:00

33 lines
647 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace GPW_Admin.WebUserControls
{
public partial class cmp_checkC19 : BaseUserControl
{
#region Public Properties
public int pageSize
{
get => grView.PageSize;
set
{
grView.PageSize = value;
}
}
#endregion Public Properties
#region Protected Methods
protected void Page_Load(object sender, EventArgs e)
{
}
#endregion Protected Methods
}
}