0

如何查看企业指南 (v 4.1) 中的以下文件?

%let libWORK=%sysfunc(pathname(WORK)); * work lib is on UNIX ;
data _null_;
    file "&libWORK./MYFILE.htm";
    put '<html>' /
        '   <head>'/
        '       <title> A Title </title>'/
        '</head> <body> some content </body> </html>';
run;
4

2 回答 2

0

知道了!最终。

data _null_;
    file print;
    infile "&libWORK./MYFILE.htm"; 
    input;
    put _infile_;
run;
于 2009-10-26T17:58:20.360 回答
0

实际上 - 烦人 - 我以前的解决方案没有帮助。SAS 仍然对 HTML 应用“包装器”,破坏任何标题信息(例如 Javascript 函数)。

以下将修复它 - 基本上运行一段虚拟代码以在您的 EG 会话中创建引用,然后继续用您选择的一些纯 html 覆盖它!链接将保留...

%let libWORK=%sysfunc(pathname(WORK)); * work lib is on UNIX ; 
ods html body="&libWORK./MYFILE.htm" ;
data _null_;
 file print;
 put "this will be overwritten! ";
run;
ods html close;

data _null_; 
    file "&libWORK./MYFILE.htm"; 
    put '<html>' / 
        '       <head>'/ 
        '               <title> A Title </title>'/ 
        '</head> <body> some content </body> </html>'; 
run;
于 2009-10-26T18:42:45.047 回答