asp.net应用程序的弹出窗口

                <div class="grid--cell fl1 lh-lg">
                    <div class="grid--cell fl1 lh-lg">
                        As it currently stands, this question is not a good fit for our Q&amp;A format. We expect answers to be supported by facts, references,   or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question   can be improved and possibly reopened, <a href="/help/reopen-questions">visit the help center</a> for guidance.

                    </div>
                </div>
            </div>
            <div class="grid--cell mb0 mt8">Closed <span title="2012-08-23 20:14:50Z" class="relativetime">7 years ago</span>.</div>
        </div>
    </aside>

I am working on an asp.net application and I need a popup like this:

http://www.popupdomination.com/demo/

Is it some jquery plugin or what. Can this be used with asp.net page ? I need to show it on all pages. Pages have a common master page.

I know ajaxtoolkit has a modal control but I need like this. Please suggest

Regards, Asif

</div>

ASP.NET does not support any popups, neither do any other language such as PHP. In short ASP.NET does not have messageboxes or dialogs. Note that ASP page is rendered inside web browser.

What is close that produces popups is JavaScript. But JavaScript popups are really simple and then they cannot be formatted.

Here the popup is actually a Div that simulates a popup. Styles are applied through JavaScript to create a popup dialog effect.

<div class="lightbox-top">
    <div class="lightbox-top-content">
    <p class="heading">Get my FREE 7 day fitness eCourse</p>

    <div class="bullet-listx">
       <ul class="bullet-list">                        
       <li>Achieve Ultimate fitness level</li>                        
       <li>Attract beautiful women</li>                        
       <li>Just two hours of "work" per day</li>                        
       <li>Get the body you want</li>                    
       </ul>
    <div class="clear"></div>
        </div>
</div>
    </div>