CGI

  • Thread starter Thread starter zion
  • Start date Start date
Z

zion

Hello,

How cam i execute CGI application with some parameters within asp.net form?

Thanks
 
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 (which you can do with the
HttpWebRequest/HttpWebResponse, or, from your ASP.NET page, you can issue a
transfer to that URL.
 
Nicholas said:
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top