How to Open a ASP.NET AJAX ModalPopUpExtender at PageLoad

A simple way of opening an ASP.NET AJAX ModalPopUpExtender on PageLoad is shown below. Add the following script to the <head> section of your page


<head runat="server">


    <title></title>


    <script type="text/javascript">


        function pageLoad() {


            var pop = $("modalPopUpExtender1");


            pop.show();


        }


    </script>


</head>







About The Author

Suprotim Agarwal
Suprotim Agarwal, Developer Technologies MVP (Microsoft Most Valuable Professional) is the founder and contributor for DevCurry, DotNetCurry and SQLServerCurry. He is the Chief Editor of a Developer Magazine called DNC Magazine. He has also authored two Books - 51 Recipes using jQuery with ASP.NET Controls. and The Absolutely Awesome jQuery CookBook.

Follow him on twitter @suprotimagarwal.

No comments: