Hello,
I have a webform on which I have a button and an aspxpopup control.
when clicked, the button calls the aspxpopup.
What I need to do is when the user clicks the close button, the webform reloads.
Thanks
Hi Baba,
Can you specify more exactly the kind of reload you want to perform ona close-button click? If you need to update some form part via a callback,you can wrap this part with the ASPxCallbackPanel and call the PerformCallbackmethod of its client representation (ASPxClientCallbackPanel) to update iton a callback. If you want to reload the page on a postback, simply placethe ASPxButton and handle its client Click event. By default the ASPxButtonhas its AutoPostback property set to True, so a postback will be sentautomatically right after the client Click event handler is executed.