20 lines
464 B
C#
20 lines
464 B
C#
|
using System;
|
|||
|
using System.Security.Principal;
|
|||
|
using System.Web.UI;
|
|||
|
|
|||
|
namespace FWA_MAIN
|
|||
|
{
|
|||
|
public partial class MaxRefillNotif : Page
|
|||
|
{
|
|||
|
protected void Page_Load(object sender, EventArgs e)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
protected void btnClose_OnClick(object sender, EventArgs e)
|
|||
|
{
|
|||
|
string script = "window.close();";
|
|||
|
ClientScript.RegisterStartupScript(this.GetType(), "closeWindow", script, true);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|