LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (May 2005, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Tue, 17 May 2005 20:12:57 -0400
Reply-To:     harry.droogendyk@RBC.COM
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Harry Droogendyk <harry.droogendyk@RBC.COM>
Subject:      Re: Has MOD been added to _webout in v9+
Content-Type: text/plain; charset="iso-8859-1"

I'm not sure it's needed. In the past, when I've output to _webout from more than one step, it's been enough to simply omit the "header" stuff on subsequent steps, eg. 'content-type: text/html', <html><head> tags.

data _null_; file _webout; put 'content-type: text/html'; put; put '<html><head><title>1st data step</title></head><body>'; run;

data _null_; file _webout; put '<h1> first line in body, second data step</h1>'; put '</body></html>'; run;

-----Original Message----- From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU]On Behalf Of Terjeson, Mark (IM&R) Sent: Tuesday, May 17, 2005 5:47 PM To: SAS-L@LISTSERV.UGA.EDU Subject: Has MOD been added to _webout in v9+

Does version 9+, 9.1.3+ allow the MOD option with _webout in FILE statement? (we know it is not available in 8.2)

Mark Terjeson Senior Programmer Analyst, IM&R Russell Investment Group 253-439-2367

Russell Global Leaders in Multi-Manager Investing

> The information contained in this message is intended only for the use > of the recipient named above. This message may contain confidential > or undisclosed information. If the reader of this message is not the > intended recipient or an agent responsible for delivering to the > intended recipient, you are hereby notified that you have received > this message in error, and that any review, dissemination, > distribution or copying of it is strictly prohibited. If you have > received this message in error, please notify us by telephone > immediately at 253-439-2367. Thank you for your cooperation. > > > > __________________________________________________________________________________________________________________________________

This e-mail may be privileged and/or confidential, and the sender does not waive any related rights and obligations. Any distribution, use or copying of this e-mail or the information it contains by other than an intended recipient is unauthorized. If you received this e-mail in error, please advise me (by return e-mail or otherwise) immediately.

Ce courrier électronique est confidentiel et protégé. L'expéditeur ne renonce pas aux droits et obligations qui s'y rapportent. Toute diffusion, utilisation ou copie de ce message ou des renseignements qu'il contient par une personne autre que le (les) destinataire(s) désigné(s) est interdite. Si vous recevez ce courrier électronique par erreur, veuillez m'en aviser immédiatement, par retour de courrier électronique ou par un autre moyen.


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