Thank for your immediately answer.
I wnat to show a progress bar dialog after the user press Yes in the confirm
dialog.
The javascript function for Show progress bar dialog is
_ShowProgressWindow();
I do that with the code:
myDeleteButton.Attributes.Add("onclick", "return confirm('Are you sure you
want to delete?');");
myDeleteButton.Attributes.Add("ShowProgressWindow( )");
But it fail to show Progress bar!
How can I add two event handle to one event in javascript?
"Steve C. Orr [MVP, MCSD]" <> 撰寫於郵件新聞
:OcH5#...
> Here's some server side code that uses javascript to display a
confirmation
> message.
>
> myDeleteButton.Attributes.Add("onclick", _
> "return confirm('Are you sure you want to delete?');")
>
> In this example, the Delete button will post back only if the person
> confirms they want to delete. Otherwise your server code is never called
in
> response to the button click.
>
> Here's a more detailed analysis of your options, including a free control
> that can handle many of the options for you.
> http://SteveOrr.net/articles/ClientSideSuite.aspx
>
> --
> I hope this helps,
> Steve C. Orr, MCSD, MVP
> http://SteveOrr.net
>
>
> "ad" <> wrote in message
> news:...
> >I want user can confirm before delete records ?
> > How can I show a confirm dialog when users press a button?
> >
> >
>
>