Hello,
I am totally new to ISAPI and I need an example or some guidance as to how to write them in C++. I do not know what the difference between filters and extensions, so some clarification in that area would be handy too.
For example, how would I convert this CGI script source:
Into an ISAPI program? Please keep it very simple, as I'm not very experienced in C++, having used VB for a long time.
Thanks in advance.
I am totally new to ISAPI and I need an example or some guidance as to how to write them in C++. I do not know what the difference between filters and extensions, so some clarification in that area would be handy too.
For example, how would I convert this CGI script source:
Code:
#include <iostream>
using namespace std;
int main() {
cout << "Content-type: text/html\n\n";
cout << "<html>\n";
cout << "<body>\n";
cout << "<h1>Testing!!!</h1>\n";
cout << "</body>\n";
cout << "</html>\n";
return 0;
}
Thanks in advance.