![]() | |
#1
| |||
| |||
|
|
hi, i have a form that when you press submit, posts data to an asp page. i want this resulting asp page to be in its own window with no toolbars (completly blank) and a specifc size (say 300x200) is this possible, and if so, how do i do it?? i'm completly new to this, so have no idea at all! thanks for any help |
#2
| |||
| |||
|
|
script function OpenForm(){ window.open("MyPage.asp","width=300,height=200"); } /script a href="OpenForm();">Link to open MyForm</a |
#3
| |||
| |||
|
|
On Sun, 06 Jul 2003 00:39:50 -0400, Bob Calvanese wrote: script function OpenForm(){ window.open("MyPage.asp","width=300,height=200"); } /script a href="OpenForm();">Link to open MyForm</a or better: script function OpenForm(){ window.open("MyPage.asp","width=300,height=200"); } /script a href="MyPage.asp" onclick="OpenForm();return false;">Link to open MyForm</a as this will work for browsers that don't understand JavaScript (e.g. Lynx, secure installations of IE, Googlebot...) -- Toby A Inkster BSc (Hons) ARCS | mailto:tobyink (AT) goddamn (DOT) co.uk | pgp:0x6A2A7D39 aim:inka80 | icq:6622880 | yahoo:tobyink | jabber:tai (AT) jabber (DOT) linux.it http://www.goddamn.co.uk/tobyink/ | "You've got spam!" playing://(nothing) |
![]() |
| Thread Tools | |
| Display Modes | |
| |