What is the equivalent of VB.Net MessageBox.Show
to VB.Net ASP??
Just newbie in ASP. Thanks..
-Vince
Printable View
What is the equivalent of VB.Net MessageBox.Show
to VB.Net ASP??
Just newbie in ASP. Thanks..
-Vince
Moved From CodeBank ASP/ASP.NET
You can't do MessageBox.show in asp.net, since it's a web technology. Instead, you can use client side scripting and use
alert('your message here');