ASP.NET question. How do I set the page size?

  • Thread starter Thread starter Steve Kershaw
  • Start date Start date
S

Steve Kershaw

Hello,

How can I dynamically set the web page size in Page_Load(..)?
On another related question, how can I display a page (using
Response.Redirect purhaps) and have the old page AND the new page
display (like a modal display mode)?

Thanks
Steve
 
asp.net is only rendering an html page. it has little control of the
browser. you can generate javascript which has a little more. in javascript
you can only change the browser size by opening a new window. this is nly
one way to open a modal dialog (on browsers that support it) is thru
javascript. due to security concerns you no longer can hide the browser
menus on a popup. so most dev's have moved away from popup's to floating
divs (or iframes) to do modal dialog boxes. any good html/javascript book
should get you started.

-- bruce (sqlwork.com)
 
Back
Top