Hi all
is there a way to control the size and display features of a webpage?
for eg: if i want to call "Webform2.aspx" from "Webform1.aspx" and i use
Response.redirect for this
instead of having the feel of the page is it possible for me to show the
webpage like a pop up?
Thanks,
Stephen Noronha
Scott M. - 31 Aug 2005 01:54 GMT
With Response.Redirect, you won't get a pop up. You can only get pop ups
from client side code (JavaScript: window.open())
> Hi all
>
[quoted text clipped - 6 lines]
> Thanks,
> Stephen Noronha
Brendan Green - 31 Aug 2005 05:07 GMT
You can by injecting JavaScript into the reponse stream during the
processing of a postback. The JavaScript can be dynamically generated to
open whatever URL you want, and to also specify flags for the new window
(such as hiding the address bar).
> Hi all
>
[quoted text clipped - 6 lines]
> Thanks,
> Stephen Noronha