HTML/CGI.pm question

Kenneth E. Lussier ken.lussier at zuken.com
Fri Nov 8 10:34:06 EST 2002


On Thu, 2002-11-07 at 16:23, pll at lanminds.com wrote:
> 
> Hey,
> 
> Anyone know how to make those neat little pop-up windows in Netscape?
> 
> I'm want to connect an href element to a new window which also 
> contains a "close window" button.

You can use the HTML frame targets. Something like:
<a href="/path/to/some/script/or/page" target="_blank">

In the new window that opens, have the "Close Window" button open a new
page with this:

<html>
<head>
<title>Window Closer</title>
</head>

<body ONLOAD="self.close()">
</body>
</html>

I can't help you with the CGI stuff, though.

C-Ya,
Kenny
-- 
----------------------------------------------------------------------------
"Tact is just *not* saying true stuff" -- Cordelia Chase

Kenneth E. Lussier
Sr. Systems Administrator
Zuken, USA
PGP KeyID CB254DD0 
http://pgp.mit.edu:11371/pks/lookup?op=get&search=0xCB254DD0





More information about the gnhlug-discuss mailing list