N
netbug
Unregistered / Unconfirmed
GUEST, unregistred user!
我这里有个LAN,一台装NT server 4.0,另一台装win98,
我在NT机上启动IIS中的WEB站点,并NT机上的WEB站点的
主目录为C:/Inetpub/wwwroot,并把下面的CGI程序hello.exe
拷在C:/Inetpub/wwwroot下,请看CGI程序:
program hello;
{$APPTYPE CONSOLE}
uses
SysUtils;
{$R *.RES}
begin
writeln('content-type:text/html');
writeln;
writeln('<h1>Hello World!</h1>');
writeln('<HR><P>');
writeln('today is'+datetostr(date));
writeln('</p>');
writeln('The current time is'+timetostr(time));
end.
然后我在另一台机上建了个html文件,请看:
<html>
<head>
<title></title>
</head>
<body>
<p><font size="7"><strong>Test CGI</strong></font></p>
<hr>
<form method="GET" action="http://hello.exe"><p>
<div align="left"><p>点击下面的按纽,运行目标程序</p></div></form>
<p><input type="submit" value="运行CGI" name="B1" size="20"></p>
</body>
</html>
并在此机用IE打开此文件,但当我点击按纽时,没反应,请问我错在哪?
另:问{$APPTYPE CONSOLE}是干吗用的?Win32 console又是什么?
谢谢。
我在NT机上启动IIS中的WEB站点,并NT机上的WEB站点的
主目录为C:/Inetpub/wwwroot,并把下面的CGI程序hello.exe
拷在C:/Inetpub/wwwroot下,请看CGI程序:
program hello;
{$APPTYPE CONSOLE}
uses
SysUtils;
{$R *.RES}
begin
writeln('content-type:text/html');
writeln;
writeln('<h1>Hello World!</h1>');
writeln('<HR><P>');
writeln('today is'+datetostr(date));
writeln('</p>');
writeln('The current time is'+timetostr(time));
end.
然后我在另一台机上建了个html文件,请看:
<html>
<head>
<title></title>
</head>
<body>
<p><font size="7"><strong>Test CGI</strong></font></p>
<hr>
<form method="GET" action="http://hello.exe"><p>
<div align="left"><p>点击下面的按纽,运行目标程序</p></div></form>
<p><input type="submit" value="运行CGI" name="B1" size="20"></p>
</body>
</html>
并在此机用IE打开此文件,但当我点击按纽时,没反应,请问我错在哪?
另:问{$APPTYPE CONSOLE}是干吗用的?Win32 console又是什么?
谢谢。