in reply to File saving style

can you show us some of your code?
If you can use LWP, then try this, it works for me.
use strict; use LWP::Simple; my $file = 'saved_file.html'; my $url = 'http://silent11.com'; getstore($url,$file);
-Silent11

Replies are listed 'Best First'.
Re: Re: File saving style
by Anonymous Monk on Apr 25, 2002 at 15:56 UTC
    I used to use lwp:: UserAgent with HTTP:: response. And use print $file ("$content"). some web page's source code is clear. some not. When I try your way(getstore), it works perfect. Thanks! ( I can not show you my code. As if I copy it to this colume, there will be no line separator. Can you tell me how to do with it?)