ASP.NETFORM

  • Thread starter Thread starter Nicole Legroe
  • Start date Start date
N

Nicole Legroe

How can I manipulate an ASP.NETForm:
1 to open the form in a new BrowserWindow
2 to set the Heigth and the Width so that the dimension can not be changed
by the client in the Browser
 
There is nothing in .NET to open a new brower window on the client. You need
to use window.open(url, name, features). use the .aspx file as the url and
blank as the name. uses the feature set the window size and make it so the
user can't resize it. i.e.
window.open("myForm.aspx", "blank", "height=200,width=400,resizable=no")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

open an url in a new window 3
AutoResize of subform control 2
Cell size 2
Webforms are not displayed correctly in non-MS Browsers? 2
EXPANDING OPTION BUTTONS 1
Header/footer 1
Copy row heights 1
DoCmd.MoveSize 2

Back
Top