#!/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("The Result of Server.URLEncode \n"); printf("

The Result of Server.HTMLEncode


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