Javascript HTML C# C++ CGI C# CGI Sample C# CGI Example C# CGI QUERY_STRING getenv GetEnvironmentVariable WWW Server Source Web Searchers WWW Server MFC CGI Example Javascript Event ASCII HTTPServer HTTP Server Source HTTP Server CGI Sample CGI Example BinarySearch BinaryReader

C CGI.ZIP

Getting WebSearchers On Your Site   (created at Aug 30, 2007)   62  

This code aims to allow the programmer to call a variety of search engines like Yahoo or Google by simply typing a phrase in the search box and selecting the search engine. So in your HTML file, create any number of links and use the 'searchem' function to...

MFC based World Wide Web HTTP Server Source Code   (created at Aug 28, 2007)   85  

The below attachment is HTTP Server source code that supports CGI. Detail Description: HTTPSVR is an MFC sample that demonstrates the use of MFC and its Windows Sockets (WinSock) classes in implementing a simple World Wide Web HTTP server. HTTPSVR turns an...

Simple CGI Programming in C   (created at Aug 27, 2007)   82  

Here's the simplest C based CGI example. #include #include int main(void){    char *data;    printf("Content-Type:text/html;xdxa"); ");&n...

C++ CGI Example working on Apache   (created at Aug 27, 2007)   59  

In this short howto I will explain how to setup your apache webserver to run any compiled application as an CGI script and show a little example program to explain the main concepts. So why does someone might have the idea to execute an application? There ...

Simple C# CGI working on Apache   (created at Aug 27, 2007)   38  

Simple program to demonstarte the power of c# on the Net. This program require web server e.g(java web server ,apache etc).Hello.csclass zzz{  public static void Main()  {    System.Console.WriteLine("Content-Type:text/html ");  &n...

How to send binary data through C# CGI app?   (created at Aug 27, 2007)   64  

Following example implemented binary data downloading.using System;using System.Collections.Generic;using System.Text;using System.IO;namespace cscgi{  class CsCGI  {    private static string dbgString = "id=1234&pic=123.gif";  &nb...