Date: Thu, 8 Oct 2009 13:07:01 -0400
Reply-To: Ya Huang <ya.huang@AMYLIN.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Ya Huang <ya.huang@AMYLIN.COM>
Subject: never mind,
I found it Re: Better navigation of ODS/html than frame?
Just found the solution:
ods html file="body.htm" contents='contents.htm' frame='frame.htm'
newfile=proc;
newfile=proc solved the problem.
On Thu, 8 Oct 2009 12:05:41 -0400, Ya Huang <ya.huang@AMYLIN.COM> wrote:
>Hi there,
>
>The following is the basic setup of a ods/html with frame for navigation.
>Problem for me is that xx and yy are actually in one big html file, even
>though you can click the link in the TOC to go to the page you want. But
>xx and yy may very long, then I have to use the scroll bar on the right
>hand side to scroll down/up, and may accidentally go to other page.
>
>Is there a way to make the xx yy separated files, so the frame actually
>point to physically separated file, instead of the different page in the
>same file?
>
>Or better yet, is there a way to create a different navigation tool,
>such as tab on top, or pull-down menu etc.
>
>Thanks
>
>Ya
>ods html file="body.htm" contents='contents.htm' frame='frame.htm';
>
>ODS PROCLABEL 'xx summary';
>proc print;
>...
>run;
>
>ODS PROCLABEL yy Summary';
>
>proc tabulate;
>..
>run;
>
>ods html close;
|