SAS OnlineTutor HomeFAQ PageSuggested Learning PathsContents+Searchback||next

Producing HTML Output
Creating a Linked Table of Contents
 


Question:


Which file do you need to open to view both the table of contents and the body file created by the program below?
   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;
seating.html
contents.html
onorder.html


 

back||next


 

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

Terms of Use & Legal Information | Privacy Statement