Using Options to Specify Links and Paths

Overview

When ODS generates HTML files for the body, contents, and frame, it also generates links between the files using the HTML filenames that you specify in the ODS HTML statement. If you specify complete pathnames, ODS uses those pathnames in the links that it generates.
The ODS statement below creates a frame file that has links to c:\records\toc.html and c:\records\data.html, and a contents file that has links to c:\records\data.html.
ods html body='c:\records\data.html' 
         contents='c:\records\toc.html' 
         frame='c:\records\frame.html';
A portion of the source code for the HTML file frame.html is shown below. Notice that the links have the complete pathnames specified in the file specifications ...

Get SAS Certification Prep Guide: Base Programming for SAS 9, Third Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.