How do we create a nonresizable web form in asp.net.Client side javascript is the quickest way. The following script is called on a button click event. It opens a new window, puts the selected page in it, sets the size, sets various toolbar options and determines if it is resizable. Finally, it positions the window. <BR><BR><BR><Script language="javascript" type="text/javascript"><BR><BR>function hcapFAQs() {wndFAQs=window.open("HCapFAQs.html",'','width=500 height=250,toobar=no,addressbar=no,menubar=no,scro llbars=yes,resizable=yes');<BR>wndFAQs.moveTo(50,35);}<BR><BR></Script>