home *** CD-ROM | disk | FTP | other *** search
- // lst15_9.cpp
-
- #include <stdio.h>
- #include <afx.h>
-
- void main( int argc, char *argv[ ], char *envp[ ] )
- {
- // Header
-
- printf(_T("Status: 200\r\n"));
- printf(_T("Content-type: text/html\r\n"));
- printf(_T("\r\n"));
-
- // Body
-
- printf(_T("<HTML><BODY>"));
-
- DWORD dwBufferSize=50;
- LPTSTR szQuery = new TCHAR[dwBufferSize];
-
- GetEnvironmentVariable(_T("QUERY_STRING"),szQuery, dwBufferSize);
-
- printf(_T("QueryString: %s"),szQuery);
-
- printf(_T("</BODY></HTML>\n"));
-
- delete szQuery;
-
- }
-