Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re: CGI.pm help with IE browser

by wonko (Pilgrim)
on Jun 14, 2000 at 11:26 UTC ( [id://18054]=note: print w/replies, xml ) Need Help??


in reply to CGI.pm help with IE browser

What You are trying to use is a non-standard, Netscape specific externsion to the HTTP-protocol; IE can't (obviously) handle this adressing technique. What You shoud do is to set the target in the startform call
print $q->startform(-action=>"whatewer.cgi", -TARGET=>"Top");
Another way to do it is with javascript:
<script language=javascript type="text/javascript"> function speciallink(new) { parent.frames["top"].document.location = new; } // --> </script>
Call it with
onClick="speciallink('Whatever.cgi')"
(The script can be used on anything that supports the onClick event)

I hope this will help ; )

/Wonko

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://18054]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (3)
As of 2024-04-19 01:35 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found