Date: Wed, 9 Nov 2005 04:53:38 -0800
Reply-To: TimBraam <timothy.j.braam@CENSUS.GOV>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: TimBraam <timothy.j.braam@CENSUS.GOV>
Organization: http://groups.google.com
Subject: Re: HTML Firefox and IE
In-Reply-To: <1131467869.440226.3910@g44g2000cwa.googlegroups.com>
Content-Type: text/plain; charset="iso-8859-1"
The difference here is in the HTML that is produced. With the original
code as you have below, the links are specified similar to:
<span><b>·</b><a href="c:\aasas\myoutput9.htm#IDX"
target="body">Data Set SASUSER.ADMIT</a>
Whereas following the SAS Note and using the PATH= URL none produces
the same link as:
<span><b>·</b><a href="myoutput9.htm#IDX" target="body">Data Set
SASUSER.ADMIT</a>
IE tends to be VERY forgiving when it comes to 'errors' like this - no
protocol is specified before the absolute file path.
Firefox/Mozilla/Netscape are not so generous.
rss wrote:
> Thanks for the reply. When I put in the path statement and then url =
> none it worksd fine. There are a number of ways to get it to work by
> either specifying an absolute or relative url. I am using SAS 9.13 and
> took the code directly from the example. My firefox is version 1.07.
>
> Here's the code that I used:
>
> ods listing close;
> ods html body='c:\aasas\myoutput9.htm'
> contents='c:\aasas\mytoc9.htm'
> frame='c:\aasas\myframe9.htm';
> proc print data=sasuser.admit;
> run;
> proc print data=sasuser.insure;
> run;
> ods html close;
> ods listing;
>
> If you alter with path statement it works fine but this will generate a
> message that says c is not a register protcol - that message comes from
> firefox when you click on myframe9.htm
>
> Anyway, thanks for your interest.