Show a Messagebox

  • Thread starter Thread starter rkmoray
  • Start date Start date
rkmoray,

ASP.NET just creates markup that is interpreted by the browser. In
order to get a messagebox to pop up, you will have to send markup (script
code) that will do that. Basically, you want to place a section of
javascript code which will call the alert on the window instance of the
browser.

Hope this helps.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

rkmoray said:
How do I show a Messagebox in asp.net(C#)?
 
Back
Top