in reply to Re^2: making dynamic web pages
in thread making dynamic web pages
CGI "Common Gateway Interface" is the protocol of how browsers talk to web servers.
Can I define and use a different proprietary protocol between a client and a server? You betcha! Happens all the time. But this server won't be able to talk to clients on the web.
Does CGI protocol vary for different web servers? No. Microsoft has their .aspx pages. And there are lots of complications of talking to a web server like that, but this is all done via CGI, "Common Gateway Interface".
To read more about Microsoft pages: http://msdn.microsoft.com/en-us/library/ms972976.aspx. What happens with pages like this is that they send a whole lot of data identified as "View_state" and other things. As a browser, you have to send this back via POST. This all happens via the CGI protocol. The difference is only what you receive and what you need to send back + your additional information in the POST.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: making dynamic web pages
by afoken (Chancellor) on Dec 21, 2009 at 20:59 UTC | |
|
Re^4: making dynamic web pages
by Anonymous Monk on Dec 21, 2009 at 21:03 UTC | |
by Marshall (Canon) on Dec 21, 2009 at 21:32 UTC | |
by Anonymous Monk on Dec 22, 2009 at 00:24 UTC |