#!/bin/ch /* Copyright (c) 2001 by SoftIntegration, Inc. All Rights Reserved */ #include int main() { class CResponse Response; class CRequest Request; chstrarray name, value; int total; Response.begin(); Response.title(L"Test of Request.getFormNameValue"); printf("

The Result of Test of Request.getFormNameValue


\n "); total = Request.getFormNameValue(name, value); printf("number of the submitted pairs: %d

\n", total); printf("pairs of name/value:
\n"); if (total != 0) while((*name) && (*value)) { fputws(*name++, stdout); printf(" = "); fputws(*value++, stdout); printf("
\n"); } Response.end(); }