Hi All!
I have a problem with my CGI application written in C#. The problem is that IE attempt to download the content which generates the CGI as a file, however firefox are show this content as the web-page. It looks like IE needs special set of HTTP headers or something like this. Does anybody know what a problem?
My C# code that generates content
Console.WriteLine("HTTP/1.0 200 OK");
Console.WriteLine("Content-type: text\\html");
Console.WriteLine("");
Console.WriteLine("<html><body><h1>CGI TEST</h1></body></html>");