In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] (Clive Lansink) wrote:
> I know that when I call up a local HTML file from within Internet Explorer it > works and renders the HTML correctly. Now is there a way to directly call > Perl from within IE to create active HTML which is then rendered by IE or can > this only be done with a web server of some sort. There must be a way to > specify a URL which can cause Perl to generate HTML on the fly for IE to > render. I simply want to do this locally so is there a way to do this? I > feel sure this should be possible. You need to have some sort of web-server running that's capable of processing CGI scripts. MacPerl 5.20r4 offers the built-in capability of creating a small cgi application that runs on the Mac even under Apple's built-in websharing control-panel environment, provided the script and necessary processing are small.. (larger needs overrun the basic limits, and would be better served with a more robust solution anyway. :) then you simply point localhost at it with http://127.0.0.1/cgi-scripts/your.cgi I sometimes use this for testing basic stuff with until I start hitting the memory limitations due to my needs. I haven't bothered setting up a full webserver package since I have a shell readily available for testing these with. (and will soon have a redhat unix box of my own set up for this specific purpose...banging on my scripts until I'm sure they stand on their own and don't beat up the server. :) You could install a webserver on your windows box. You could dual-boot unix and run your own server that way. Lots of options. Lots of initial configuration overhead too, but once you get that out of the way, you're off and running. print pack "H*", "4a75737420416e6f74686572204d61635065726c204861636b65722c0d"; -- Scott R. Godin | e-mail : [EMAIL PROTECTED] Laughing Dragon Services | web : http://www.webdragon.net/ It is not necessary to cc: me via e-mail unless you mean to speak off-group. I read these via nntp.perl.org, so as to get the stuff OUT of my mailbox. :-) -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]