LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous (more recent) messageNext (less recent) messagePrevious (more recent) in topicNext (less recent) in topicPrevious (more recent) by same authorNext (less recent) by same authorPrevious page (January 2002, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Tue, 22 Jan 2002 11:35:07 -0600
Reply-To:     solmstead@BETASYS.COM
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         solmstead@BETASYS.COM
Subject:      HTML Next Page Help
Content-Type: multipart/alternative;

I am building, using SAS/Graph, an index.html file with subsequent gif files (goptions DEVICE=html).

Currently, when I double-click on the index file the browser displays the first gif file. I have appended html code to the index file such that the browser refreshes itself every 10 seconds, as shown below:

FILENAME REPORTS 'R:\SAS Programs\Graph1\Index.html' MOD; DATA _NULL_; FILE reports; PUT '<meta http-equiv="refresh" content="10;"/>'; RUN;

I would like to add the necessary html code so that the browser opens up on a particular gif file, say the fifth one. Therefore, I assume, the code would be something like this:

FILENAME REPORTS 'R:\SAS Programs\Graph1\Index.html' MOD; DATA _NULL_; FILE reports; PUT '<meta http-equiv="refresh" content="10; pagenumber=5"/>'; RUN;

Does anyone know the correct syntax for this? Please e-mail me directly at solmstead@betasys.com

Thanks,

Steve

-------------------------------------------------- The information contained in this communication may be confidential or legally privileged and is intended only for the recipient named above. If the reader of this message is not the intended recipient, you are hereby notified that any dissemination, distribution or copying of this communication or its contents is strictly prohibited. If you have received this communication in error, please immediately advise the sender and delete the original and any copies from your computer system.


[text/html]


Back to: Top of message | Previous page | Main SAS-L page