A put a ancor tag on a page. When I click it, I want the target page to appear smaller (i.e. 200px x 300px) just on top of the origin page.
<a href="Destination.aspx">Destination</a>
After I post back, I want the Destination page to desappear.
Thanks for helping
You can open it with
window.openDefine a hidden field in Destination.aspx.
In postback of Destination.aspx after which you want the popup to disappear, set value of hidden field to “true” or something you like
On load of popup add this javascript, could be just before the ending tag of body.