Message Box in ASP.Net
-
-
-
i think you have to use client side scripting for this (eg: alert(...) in javascript) /jason
Thanks jason,i'm trying to work on it...
-
Thanks jason,i'm trying to work on it...
Here is an example: used confirm in javascript function DeleteSpread() { var OK = confirm('Are you sure you want to delete these Spreads?'); if (OK) { return true; } else { return false; } } //Then you will bind this function on the button. No pains, no gains.
-
Thanks jason,i'm trying to work on it...
This CP article was quite helpful for me: http://www.codeproject.com/aspnet/AspNetMsgBox.asp
-
Here is an example: used confirm in javascript function DeleteSpread() { var OK = confirm('Are you sure you want to delete these Spreads?'); if (OK) { return true; } else { return false; } } //Then you will bind this function on the button. No pains, no gains.
Thanks for the info... Deathorites
-
This CP article was quite helpful for me: http://www.codeproject.com/aspnet/AspNetMsgBox.asp
Thanks for the info... Deathorites