How to display a MessageBox in asp.net? Is it possible to call the messagebox from C# default.aspx coding?
regards
senthil
Printable View
How to display a MessageBox in asp.net? Is it possible to call the messagebox from C# default.aspx coding?
regards
senthil
check out this link:
http://www.codeproject.com/aspnet/AspNetMsgBox.asp
Simpler method: Create a method called ShowMsgBox() that accepts a string, and code it like...
Page.RegisterStartUpScript("messageboxscript","<script language='JavaScript'>alert('" + stringvalue + "');</script>");