28 lines
580 B
C#
28 lines
580 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);
|
|
}
|
|
|
|
public void forceReload()
|
|
{
|
|
resetProdData();
|
|
}
|
|
|
|
#endregion Protected Methods
|
|
}
|
|
} |