Newbie Question.
How do I open an ASPX page in maximized view using C# and VB?
Thank you.
You don't. While you may open a window of any size using JavaScript
(assuming that popups are not blocked), maximizing, minimizing, and
restoring the browser window are not options available to the script.

Signature
HTH,
Kevin Spencer
Microsoft MVP
DSI PrintManager, Miradyne Component Libraries:
http://www.miradyne.net
> Newbie Question.
>
> How do I open an ASPX page in maximized view using C# and VB?
>
> Thank you.
> Newbie Question.
>
> How do I open an ASPX page in maximized view using C# and VB?
>
> Thank you.
Hello mate, you can't.
Opening of a window is a client side operation, therefore you'd need
to write some JavaScript to do it.
window.open will do the trick, have a google.
Jon