Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ASP.NET message box

I am looking for a custom control which could enable me to call message of following type.

http://extjs.com/deploy/dev/examples/message-box/msg-box.html

Is there a control which function like a .NET desktop application messagebox?

I know, exactly similar may not be possible but main features I am looking for here is returning value of clicked button and custom value entered by user in code behind.

I have also started working on it myself, but hardly any luck so far.. any direction in this case will also be very useful.

like image 605
user20031 Avatar asked Nov 17 '25 21:11

user20031


1 Answers

There is a good tutorial which could help:

Create MessageBox user control using ASP.NET and CSS

And here combining it with the AjaxControlToolkit:

ASP.NET Popup Message Box User Control

I hope this helps!

like image 164
splattne Avatar answered Nov 20 '25 11:11

splattne