cgi Response

  • Thread starter Thread starter Robbie Leatherbarrow
  • Start date Start date
R

Robbie Leatherbarrow

Hi All,

I need to create a program which will need to do a response. This app will
need to be a console application so can not use asp but I am having
difficulty doing a response without being asp. I am also writing in vb.net.

Any help would be appreciated.

Robbie
 
CGI exe's typically work by writing to the standard output device (using
Console.Write for .NET console apps), and the web server takes care of
passing the results on to the client.

Is there a specific reason you need to use a console application for this?
 
Back
Top