SAS OnlineTutor HomeFAQ PageSuggested Learning PathsContents+Searchback||next

Producing HTML Output
Specifying a Path for Output
 


Question: Which program saves the body, contents, and frame files to the directory C:\Sales in the Windows environment?

   ods listing close;  
   ods html body='c:\sales\seating.html'
            contents='c:\sales\contents.html'
            frame='c:\sales\onorder.html';
   proc print data=orders.sofas;  
   run;
   proc print data=orders.chairs;
   run;
   ods html close;
   ods listing;
   ods listing close;
   ods html path='c:\sales'
            body='seating.html'
            contents='contents.html'
            frame='onorder.html';
   proc print data=orders.sofas;  
   run;
   proc print data=orders.chairs;
   run;
   ods html close;
ods listing;
both programs


 

back||next


 

Copyright © 2002 SAS Institute Inc., Cary, NC, USA. All rights reserved.

Terms of Use & Legal Information | Privacy Statement