Apparently, you're supposed to put "#foo" stuff in a URL after all the

"?" and "&" stuff.  IE doesn't work if you don't.
This commit is contained in:
terry%mozilla.org 2000-01-28 16:18:10 +00:00
parent 9c20de909a
commit f461027ecc

View File

@ -55,11 +55,13 @@ ConnectToDatabase();
if (grep(/^cmd-/, keys(%::FORM))) {
my $url = "query.cgi#chart?$::buffer";
my $url = "query.cgi?$::buffer#chart";
print qq{Refresh: 0; URL=$url
Content-type: text/html
<A HREF="$url">Adding field to query page...</A>
Adding field to query page...
<P>
<A HREF="$url">Click here if page doesn't redisplay automatically.</A>
};
exit();
}