javasocute
javasocute

Reputation: 648

How to display a dialog box in asp.net

I need recommendations on something. I would like to display a box to the user a list of all the processes that are going on during a long process. The user clicks one button and the process takes about 30 seconds. What is the best way to display information about what is actually going on? Im pretty new to programming and any help will be greatly appreciated. Im using c#, asp.net, and visual studio 2010. If that is not enough let me know. Thanks!

Upvotes: 0

Views: 2166

Answers (1)

James Johnson
James Johnson

Reputation: 46047

I would look into the ModalPopupExtender in the AJAX Toolkit.

You can also try creating the dialog with jQuery. If you decide to go that route, check out the jQuery UI dialog:

http://jqueryui.com/demos/dialog/

Upvotes: 2

Related Questions