*.DLL is the 
	IS2WCGI.DLL 
pipe program from Microsoft. It can run a 16 bit cgi application
on NT IIS server. 
It makes 3 or more temporary file in CGI-BIN subdirectory 
(therefore must use the CREATE/DELETE attribute in it)
	file1.tmp: POST parameters from FORM
	file2.tmp: ???
	file3.tmp: space to html output
and calls the same name 16bit CIG program.

About it from CLIPWEB 3.0 software: (on www.fivewin.com) *******************

For the longest time, Microsoft was telling us that we could not run WIN-CGI
applications on Windows NT under their IIS (Internet Information Server)
Web Server.  And we believed them!

Recently, a very smart young man named John Bristor posted a message on
the comp.lang.clipper news group telling me I was all wet, and that one
could indeed run WIN-CGI apps on IIS, "IF" you knew how!  He gave me
enough information that with only a couple of hours of research on the
internet I found the answer.  It is the Microsoft IIS SDK! (that's
right, it is by Microsoft, but they wouldn't tell us)

Thanks John!

So.....  Lets make a long story short....  You need a file called
IS2WCGI.DLL which we have renamed to CLIPWEB.DLL in this version.

How to use it...  Assume you have a ClipWeb CGI program called
mycgi.exe.  Basically, all you have to do is copy clipweb.dll to
mycgi.dll and instead of calling mycgi.exe you call mycgi.dll.
Mycgi.dll in turn calls mycgi.exe and passes it all of the information
that your program needs.

ClipWeb.dll (IS2WCGI.DLL) is a 32 bit ISAPI dll that acts as a "thunk"
layer between your 16 bit Clipper or 32 bit Xbase++ WINCGI program,
and Windows NT and IIS.

See the sample HTML code (showing the calls) in \clipweb\HTML\IIS
