Files
MoonPro.net/MP-MAG/WebUserControls/cmp_currODL.ascx.cs
T
2021-01-13 16:19:10 +01:00

27 lines
578 B
C#

using SteamWare;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace MP_MAG.WebUserControls
{
public partial class cmp_currODL : BaseUserControl
{
#region Protected Methods
protected void lbtForceReload_Click(object sender, EventArgs e)
{
resetProdData();
Response.Redirect(titolo);
}
protected void Page_Load(object sender, EventArgs e)
{
}
#endregion Protected Methods
}
}