Dialog box

  • Thread starter Thread starter Catalin Porancea
  • Start date Start date
C

Catalin Porancea

Hello,

How do I create a dialog box in ASP .Net? (I think it's called webdialog but
I'm not sure).

Thank you

Catalin
 
Hi,

In asp.net (web application), you have to remember that you are dependent on
the browser.
Usually, you can use javascript to open dialog boxes :
-> alert("message");
-> confirm("question") etc...


Laurent.
 
Back
Top