Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
Member
24 Points
73 Posts
May 06, 2012 10:33 AM|LINK
<html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> <script language="javascript" type="text/javascript"> function alertMsg() { alert("Hello"); } </script> </head> <body> <form id="form1" runat="server"> <div> <input type="button" value="Successfull!" onclick="alertMsg()" /> </div> </form> </body> </html>
esmerman
Member
24 Points
73 Posts
Re: How to display message boxes in asp.net?
May 06, 2012 10:33 AM|LINK
<html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> <script language="javascript" type="text/javascript"> function alertMsg() { alert("Hello"); } </script> </head> <body> <form id="form1" runat="server"> <div> <input type="button" value="Successfull!" onclick="alertMsg()" /> </div> </form> </body> </html>