#!/bin/ch /* Copyright (c) 2001 by SoftIntegration, Inc. All Rights Reserved */ #include int main() { class CResponse Response; chchar *cacheControl_def, *cacheControl_cur; // get default cache control type cacheControl_def = Response.getCacheControl(); //put cache control type as public Response.setCacheControl(L"public"); //get current cache control type cacheControl_cur = Response.getCacheControl(); Response.begin(); Response.title(L"Test of Response.setCacheControl and Response.getCacheControl"); printf("

Test of Response.setCacheControl and Response.getCacheControl


\n"); printf("Default Cache Control is : "); fputws(cacheControl_def? cacheControl_def : L"(null)", stdout); printf("
\n"); printf("Current Cache Control is : "); fputws(cacheControl_cur? cacheControl_cur : L"(null)", stdout); printf("
\n"); Response.end(); }