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")
 
Back
Top