Does any one know how to create a button in HTML that down load the current webpage, rather than open it ?
What i want is to dynamicly create a webpage (see my script help thread)
and on that page have a button that will allow users to click to download/save the page as a text file.
idealy i dont want to use and client side scripting so it is complety portable, but if not some simple jave coded would be ok i supose. as long is it will work cross browser and OS.
Any ideas ?
Cheers
wondering if the folowwing code can help.
use LWP::Simple;
getstore( '
http://www.somehost.com/somepage.html',
'/home/Sarsamkar/somepage.html' );
DevilWAH