In my previous post 8 steps to develop, setup and call c# cgi programs in IIS 7, we learned how to create a CGI program in C#, install it as a website and call it using GET and POST. In this article, I am going to modify that C# program to include code to read and […]
Category Archives: Web Development Fundamentals
How to maintain HTTP session state with cookies in C# CGI program in Visual C# 2010 Express and IIS
Posted in Web Development Fundamentals
Tagged C#, CGI, Cookies, GET, HTTP, HTTP Headers, IIS, POST, Query String, Visual C# Express 2010
Leave a comment
8 Quick steps to develop and setup C# CGI program in IIS 7
CGI or common Gateway Interface is the protocol used by classic web forms to exchange data between the user and the web server. CGI uses HTTP protocol, which is a simple text exchange protocol on top of TCP/IP. In the HTTP protocol, environment variables of the OS and input from standard input devise such as […]