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