On Tue, Nov 9, 2010 at 9:39 PM, Carlos Caetano <[email protected]>wrote:

> Hi...
>
> How can I open a POP-UP window on event in ASP.NET without a postback or
> reload.
>
> Tks
>
> --
> Carlos Caetano
>

Use jQuery to Fire the pop up the window on the button click.
add a div in your page ( ex : DivPopUp) and use the below code to pop up the
div
and to avoid post back u can use HTML button.

$(document).ready(function()
{
      $("#DivPopUp").hide();
     $('#btnPopUp').click(function()
    {
         $("#DivPopUp").show("slow");
    }
});


-- 
N i t i :-
The future belongs to those who believe in the beauty of their dreams...

Reply via email to