close buton
-
u know any command , if i click the close button , there should appear a dialog box , that ask u to make sure that u want u close the window. or in java script using asp.net?
Sonia Gupta Soniagupta1@yahoo.co.in Yahoo messengerId-soniagupta1 Love is Friendship and Friendship is Love....
-
u know any command , if i click the close button , there should appear a dialog box , that ask u to make sure that u want u close the window. or in java script using asp.net?
Sonia Gupta Soniagupta1@yahoo.co.in Yahoo messengerId-soniagupta1 Love is Friendship and Friendship is Love....
use confirm box in javascript.
Amit Metkar 3i-infotech, Mumbai.
-
use confirm box in javascript.
Amit Metkar 3i-infotech, Mumbai.
can u provide some code that can be implemented in the code behind file. thank you
Sonia Gupta Soniagupta1@yahoo.co.in Yahoo messengerId-soniagupta1 Love is Friendship and Friendship is Love....
-
can u provide some code that can be implemented in the code behind file. thank you
Sonia Gupta Soniagupta1@yahoo.co.in Yahoo messengerId-soniagupta1 Love is Friendship and Friendship is Love....
you can simply do. function closea() { window.close(); } OR with comfirm box function closea() { var a = window.confirm('Do you want to close this window'); if(a = true) { window.close(); } } call this function onclientclick event of button
Amit Metkar 3i-infotech, Mumbai.
-
can u provide some code that can be implemented in the code behind file. thank you
Sonia Gupta Soniagupta1@yahoo.co.in Yahoo messengerId-soniagupta1 Love is Friendship and Friendship is Love....