#!/bin/ch /* Copyright (c) 2001 by SoftIntegration, Inc. All Rights Reserved */ #include #include int main() { class CResponse Response; class CRequest Request; class CServer Server; chchar *value; Response.begin(); Response.title(L"The Result of Server.URLEncode \n"); printf("

The Result of Server.HTMLEncode

\n "); value = Request.getForm(L"URLToEncode"); if (value != NULL) fputws(Server.URLEncode(value), stdout); else printf("Please input the URL for encode first \n
"); Response.end(); }