
August 29th, 2000, 05:10 PM
|
|
Junior Member
|
|
Join Date: Aug 2000
Location: Omaha, NE, USA
Posts: 2
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
<%@ LANGUAGE = PerlScript %>
<HTML>
<HEAD>
<TITLE>PerlScript Hello World!</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1>PerlScript Hello world!</H1>
<P>
<SCRIPT LANGUAGE="PerlScript" RUNAT=Server>
$Response->write("Hello world!");
chdir("e:websitequoterate");
use Win32::Process;
Win32::Process::Create($Process,"term.exe"," ",0,DETACHED_PROCESS,".") | | die "Create: $!";
</SCRIPT>
</BODY>
</HTML>
This is the code that I have been trying to use. This first parts were just tests to make sure that Perl was working. I am new to Perl and don't fully understand it yet. The process that I am trying to accomplish is:
A user fills out a short form that then creates a txt file for the exe to read from. Once this is created I then need to call the EXE file which creates a new HTML file that I must some how then open. Any suggestions.
thanks,
Justin
------------------
Justin T. Martin
Web Specialist
Turner & Associates, Corp.
|