How do I create a message box in ASP.net?

  • Thread starter Thread starter tom c
  • Start date Start date
T

tom c

I guess in ASP.Net I need to create another small form with command
buttons on it in order to have something like a message box in a
desktop app. I am new to this and don't know how to get the sub form
to pop up. Could someone point me at a walkthrough that explains this,
or give me a quick explaination here please?
 
You need to use client script for this. Either alert('messsage') or
confirm("Are you sure you want to ...") and so on.
you can add this with control.Attributes.Add ( .., ..)
or any of a number of other ways.
Peter
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top