Files
MoonPro.net/MP-SITE/excelExportStati.aspx.cs
T
2020-09-11 14:57:14 +02:00

21 lines
451 B
C#

using SteamWare;
using System;
using System.Web;
using System.Web.UI;
namespace MP_SITE
{
public partial class excelExportStati : BaseExportPage
{
internal override void aggiornamento()
{
gvStati.AllowPaging = false;
ods_DiarioDiBordo.DataBind();
}
internal override void renderControl(HtmlTextWriter htmlWrite)
{
gvStati.RenderControl(htmlWrite);
}
}
}