由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
BuildingWeb版 - CGI程序中如何把某个文件的HTML内容返回给溜览器?
相关主题
a HTML problem[转载] 如何确保HTML文件不被复制?(求助)
请问?is there any such HTML editor?
\\\\\\\\\\\\\\\\A question about CGI//////////////powerpoint->HTML一问
在CGI程序中有何好方法返回HTMLHTML expert, Please Help.
哪里能免费下载Dreamwaver?在HTML中, 空格是怎么 生成的.
newbie question: print problem in PHP?How to design HTML to let it print different sections in new pages?
请教一个cgi的newbie问题土问题---关于HTML
Re: 怎样把HTML code中的大写改成小写a question about printing html file
相关话题的讨论汇总
话题: print话题: html话题: cgi话题: 溜览器话题: client
进入BuildingWeb版参与讨论
1 (共1页)
d***y
发帖数: 45
1
是 print < filename.txt; 吗?
s**********i
发帖数: 711
2
what language do you use?
how you want to send back the data?
if it's static page, you can redirect the client to it's
address.
if you don't want the client see it's address or it's
not available through HTTP, you can do this with perl:
print "content-type: text/html\n\n";
open F, 'filename.txt';
print while ;
close F;
exit;

【在 d***y 的大作中提到】
: 是 print < filename.txt; 吗?
1 (共1页)
进入BuildingWeb版参与讨论
相关主题
a question about printing html file哪里能免费下载Dreamwaver?
HTML问题newbie question: print problem in PHP?
HTML问题2请教一个cgi的newbie问题
Help: number of incoming links in HTML?Re: 怎样把HTML code中的大写改成小写
a HTML problem[转载] 如何确保HTML文件不被复制?(求助)
请问?is there any such HTML editor?
\\\\\\\\\\\\\\\\A question about CGI//////////////powerpoint->HTML一问
在CGI程序中有何好方法返回HTMLHTML expert, Please Help.
相关话题的讨论汇总
话题: print话题: html话题: cgi话题: 溜览器话题: client