Usage Note 23438: How can I add extra links to the frame in ODS HTML?
The ability to add extra links to the frame is something that is planned for future versions of SAS. However, since the frame file is very small, it can be modified quite easily with the DATA step. Whereas the default frame has just columns, the following example adds a row that contains a banner and a row that contains a set of navigation links. It's not very pretty, but it works. View output.
data _null_;
infile 'frametest.html' lrecl=100 flowover pad sharebuffers;
input line $char100.;
file "frametest1.html" noprint;
if _n_=11 then do;
put '<FRAMESET ROWS="55,*,45">' ;
put '<FRAME NAME="banner" src="banner.html">';
end;
if _n_=15 then do;
put '<FRAME NAME="buttons" src="button.html">';
put '</FRAMESET>';
end;
put _infile_;
run;
See also the full PROC TEMPLATE FAQ and Concepts.
Operating System and Release Information
*
For software releases that are not yet generally available, the Fixed
Release is the software release in which the problem is planned to be
fixed.
| Type: | Usage Note |
| Priority: | low |
| Topic: | SAS Reference ==> DATA Step Third Party ==> Output ==> HTML SAS Reference ==> ODS (Output Delivery System)
|
| Date Modified: | 2005-07-11 17:07:56 |
| Date Created: | 2003-09-30 11:25:30 |