标题: html [打印本页] 作者: shiyiming 时间: 2008-10-26 11:01 标题: html I am new ! I can't get html output even I copy and paste a easy program,such as
ods listing close;
ods html body='c:\mydata.html';
proc print data=sasuser.admit;
run;
ods html close;
ods listing;
some expert can help me? thanks a lot !!!作者: shiyiming 时间: 2008-10-26 11:42 标题: Re: html ods listing close;
ods html file='c:\mydata.html';
proc print data=sasuser.admit;
run;
ods html close;
ods listing;
这样会行的,body不是那样用的,你最好看看帮助作者: shiyiming 时间: 2008-10-26 12:07 标题: Re: html Thank you! renjianmen. I try the program you give me, but it still dose not work! Did you try it in your computer?Thank you again!!!作者: shiyiming 时间: 2008-10-26 16:42 标题: Re: html 程序没有错误,只是你那sasuser.admin那数据集不存在