How to show a pop up messagebox
Ask by ravi kumar
Updated 03 Nov 2011
To open a pop up message box, create a java-script function as shown below:
then call that function wherever you want. I call it on the click of hyperlink.
<%: Html.ActionLink("Open Popup", "Index", "Home", new { id = "popup", onclick = "openPopup()" })%>
you can modify your popup box with the help of java-script and css. Here I had simply given a demo.