home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / CPP / ACGIFREE.ZIP / README.TXT
Encoding:
Text File  |  1996-09-23  |  3.2 KB  |  137 lines

  1. ACGI++ Class Hierarchy v1.3
  2. ===========================
  3.  
  4. This is the freeware release of the class hierarchy.  Provided
  5. to you are the header files in the /include directory and
  6. statis library files for Visual C++ 4.x and Borland C++ 4.x.
  7.  
  8. Since this is the free version, technical support,
  9. extended documentation, help files, examples, and source
  10. code are not provided.  Essentially what you see is what
  11. you get.
  12.  
  13. The samples provided should help you get started.
  14.  
  15. This freeware product is not to be used for any commercial
  16. purpose.  It is only provided for evaluation purpose.
  17. If you find this product useful, please purchase the release
  18. version which will contain the full HTML help, extended
  19. documentation, extended sample code, and e-mail based
  20. technical support. 
  21.  
  22. This product is property of Quasit Technologies, Inc. and any use
  23. of it implies agreement of the terms.
  24.  
  25. Please visit the homepage for help:
  26. -----------------------------------
  27. http://www.serve.com/adc/acgi
  28.  
  29. For futher assistance e-mail at:
  30. --------------------------------
  31. adc@mail.serve.com
  32.  
  33.  
  34.  
  35. Pricing
  36. =======
  37.  
  38. Extended package
  39. ----------------
  40.  Compilers
  41.  ---------
  42.  Visual C++ 4.x
  43.  Borland C++ 4.x
  44.   
  45.  Price
  46.  -----
  47.  99.00$US
  48.  
  49.  Features
  50.  --------
  51.  Extensive CGI source code
  52.  Online HTML help
  53.  Supporting technical documentation
  54.  Static LIBs
  55.  E-Mail support for setting up
  56.  
  57. Full Release
  58. -------------
  59.  Compilers
  60.  ---------
  61.  Visual C++ 4.x
  62.  Borland C++ 4.x
  63.  GNU C++ 2.6.0 or better
  64.  Other ANSI 2.0 compliant C++ compilers 
  65.  
  66.  Price
  67.  -----
  68.  249.00$US
  69.  
  70.  Features
  71.  --------
  72.  Full C++ source code
  73.  Extended debugging support
  74.  Many sample CGIs
  75.  Online HTML help
  76.  Supporting technical documentation
  77.  A working message board CGI
  78.  A working X11 bitmap hit counter CGI
  79.  Technical E-Mail support
  80.  
  81.  
  82.  
  83.  
  84. To purchase a copy 
  85. ==================
  86. Please send check or MO to:
  87.  
  88. Quasit Technologies, Inc.
  89. 295 Greenwich Street
  90. Suite 244
  91. New York, NY  10007
  92.  
  93. Upon reception of your check/MO you will be emailed your package.
  94.  
  95. Feel free to email us for more information or details:
  96. adc@mail.serve.com
  97.  
  98.  
  99.  
  100. How to setup your first CGI project
  101. ===================================
  102. Visual C++ 4.x
  103. --------------
  104. 1. Create a new Win32 Console application
  105. 2. Settings::C/C++ - Enable RTTI
  106. 3. Settings::Preprocessor - Add path to the includes
  107. 4. Insert File into project: vc_acgi.lib
  108. 5. Create a new file
  109. 6. Add to you new file '#include "a_acgi.h"'
  110. 7. Insert your file to the project
  111. 8. Start development
  112.  
  113. Borland C++ 4.x
  114. ---------------
  115. 1. Create a new Win32 Console application
  116. 2. Modify local settings: Add the include directory
  117. 3. Add node: bc_acgi.lib
  118. 4. Create a new file
  119. 5. Add to you new file '#include "a_acgi.h"'
  120. 6. Add you file to the project
  121. 7. Start development
  122.  
  123.  
  124.  
  125.  
  126. About the samples
  127. =================
  128. HTML_EX.CPP - Basic template to help you generate dynamic HTML
  129.  
  130. CGI_EX.CPP - Basic CGI to do a dump of all form submissions and envirinment variables
  131. CGI_EX.HTM - HTML page used to call CGI_EX
  132.  
  133. FORM_EX.CPP - Self calling version of CGI_EX.CPP with some basic form item processing
  134.  
  135. X11_EX.CPP - Demonstrates how a simple X11 bitmap can be generated
  136.  
  137.