Usage Note 23328: How can I add a hyperlink to the title of ODS HTML output?
Adding a hyperlink in the title can be done several ways. One way is to add the hyperlink in the TITLE statement. This is shown in example 1. The benefit of this method is that you can specify a different hyperlink for each title. This will only make the specified title a hyperlink.
Starting with Release 8.1, you can add a hyperlink individually in a TITLE statement by using the LINK= option. See example 2.
Another approach would be to use the URL= attribute within the style element SystemTitle. Using this approach, every title would have the same hyperlink. See example 3.
/* example 1*/
title '<a href="http://www.sas.com">this is a title</a>';
/* example 2*/
title link="http://www.sas.com/" "this is a test";
/* example 3*/
proc template;
define style styles.test;
parent=styles.default;
style systemtitle from titlesandfooters /
URL='http://www.sas.com';
end;
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 ==> ODS (Output Delivery System) Third Party ==> Output ==> HTML
|
| Date Modified: | 2004-12-08 12:03:30 |
| Date Created: | 2003-08-07 15:26:13 |