CNSA-216-FP/FWA_MAIN/MaxRefillNotif.aspx.cs

20 lines
464 B
C#
Raw Normal View History

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);
}
}
}