On Tue, 2005-03-08 at 15:08, Tal Cohen wrote: > I am not sure if this will work, but...Try embedding an anchor tag name into > the path of the Perl CGI URL called in your FORM tag. Then, have the > Perl-CGI script embed that same anchor tag into the resulting HTML document. > What should happen is now when you call the CGI script, the browser will > know to seek out that anchor tag.
Yep, that's the way to go. Problem with POSTs, is *technically* it's illegal to re-direct from them, so you are not supposed to issue a new URL to go to. Thus, any anchor referenced must be in the original URL. Of course, you can violate the HTTP standard, but that's another barrel of apple juice. -- Aaron Sherman <[EMAIL PROTECTED]> Senior Systems Engineer and Toolsmith "It's the sound of a satellite saying, 'get me down!'" -Shriekback _______________________________________________ Boston-pm mailing list [email protected] http://mail.pm.org/mailman/listinfo/boston-pm

