Message box in asp.net
-
I want a message box with Yes and No option asp.net 1.0 web application how can i do this
-
I want a message box with Yes and No option asp.net 1.0 web application how can i do this
swami samarth wrote:
I want a message box with Yes and No option asp.net 1.0 web application
ASP.NET 1.0? The latest version is 3.5. You should really consider upgrading. You could do this with the Javascript confirm[^] method.
Paul Marfleet "No, his mind is not for rent To any God or government" Tom Sawyer - Rush
-
I want a message box with Yes and No option asp.net 1.0 web application how can i do this
Hi, You will have to do it using Javascript. Try following code in your code behind on the button where you want this box. cmdSubmit.Attributes.Add("onclick", "return window.confirm('Are you sure!!!');"); Regards
Nav