Re: CGI

by Arne Vajhøj on 10/31/2007 6:10:00 PM Nicholas Paldino [.NET/C# MVP] wrote:
> CGI is executed directly in response to a request from a client, exposed
> by a URL on your site. You probably have a cgi-bin directory which you have
> to enable, and then you have to put your CGI application there. Then, you
> have to make a request against that URL

That is necessary of it is a remote CGI program.

If it is a local CGI program it should be fairly easy to
run it with Process.Start.

Arne