SAS Enterprise Guide UNIX WORK 库 - 查看文件
如何查看企业指南 (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;
How do I view the file below in Enterprise Guide (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;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
知道了!最终。
Got it! eventually.
实际上 - 令人烦恼的是 - 我之前的解决方案没有帮助。 SAS 仍然对 HTML 应用“包装器”,破坏任何标头信息(例如 Javascript 函数)。
下面将修复它 - 基本上运行一段虚拟代码来在您的 EG 会话中创建引用,然后继续用您选择的一些纯 html 覆盖它!链接将保留...
Actually - annoyingly - my previous solution didn't help. SAS still applies a 'wrapper' to the HTML, destroying any header information (eg Javascript functions).
The following will fix it - basically run a dummy piece of code to create the reference in your EG session, then proceed to overwrite it with some pure html of your choosing! The link will remain...