in reply to How to display text in IE?
but that's from within a cgi, from the command line a script like this will work:use CGI qw(:standard); print header("text/plain"); print "text";
works if iexplore is on your path if not you can add directories to you PATH like so(Win ME example)use Cwd; $text='my text'; open(FILE,'>stuff.txt'); print FILE $text; close (FILE); system('iexplore '.cwd.'\stuff.txt');"
set PATH=%PATH%;C:\Progra~1\Intern~1;
|
|---|