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; 吗?
|
|