22 lines
473 B
C#
22 lines
473 B
C#
using System.Web.UI;
|
|
|
|
namespace MP_SITE
|
|
{
|
|
public partial class excelExportStati : BaseExportPage
|
|
{
|
|
#region Internal Methods
|
|
|
|
internal override void aggiornamento()
|
|
{
|
|
gvStati.AllowPaging = false;
|
|
ods_DiarioDiBordo.DataBind();
|
|
}
|
|
|
|
internal override void renderControl(HtmlTextWriter htmlWrite)
|
|
{
|
|
gvStati.RenderControl(htmlWrite);
|
|
}
|
|
|
|
#endregion Internal Methods
|
|
}
|
|
} |