I am working with just IE
I want to implement a button, when the user clicks it, the browser will close
I did this:
ClientScript.RegisterStartupScript(typeof(Page), "closePage", "<script type='text/JavaScript'>window.close();</script>");
the browser really close, but every time I click that button, I got a message from IE states that the web page will be close, with two options yes, and no.
is there any way to avoid that button?