#!/bin/ch /* Copyright (c) 2001 by SoftIntegration, Inc. All Rights Reserved */ #include int main() { class CCookie *pck; class CResponse Response; class CRequest Request; int i, count; Response.begin(); Response.title("Test of Request.getCookies"); printf("

Test of Request.getCookies


\n"); //get Cookies count = Request.getCookies(&pck); for(i=0; i < count; i++) printf("%s = %s
\n", pck[i].getName(), pck[i].getValue()); Response.end(); }