LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (November 2005, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Tue, 8 Nov 2005 08:37:49 -0800
Reply-To:     rss <rslotpole@COMCAST.NET>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         rss <rslotpole@COMCAST.NET>
Organization: http://groups.google.com
Subject:      Re: HTML Firefox and IE
Comments: To: sas-l@uga.edu
In-Reply-To:  <1131454616.795511.201520@f14g2000cwb.googlegroups.com>
Content-Type: text/plain; charset="iso-8859-1"

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.


Back to: Top of message | Previous page | Main SAS-L page