views:

106

answers:

1

I am looking for some popup message / reminder like this and that, in a ready to use control in ASP.NET.

PS. For some reasons, I am forced NOT TO WRITE ANY JAVASCRIPT. I can use only Web Controls.

A: 

Have you looked at the AlwaysVisible control in the AJAX Toolkit? That's the closest to the SO notification bar that sits at the top that I'm aware of, although there are undoubtedly others.

PhilPursglove
Yes, I know it. But it does not ship with a property for the control button to close, like the CancelControlID in ModalPopup.If I use it, I will have to make a button and call AJAX postback with a UpdatePanel. Is just too slow and heavy.I know, a onClick JavaScript does the closing tricks, but it is forbidden.
Dennis Cheung