p="<P>入网费:"+m-user-FARE-INI+".</P>\015\012";
cgi->WriteHTMLBody(strTemp);
……
strTemp="<P>通信费:"+m-user.m-FARE-COM+".</P>\015\012"
;
cgi->WriteHTMLBody(strTemp);
m-user.Close();
if(!strReferer.IsEmpty())
//设置回到主页的锚点。
{
cgi->WriteHTMLBody("<P>Go<A HREF=\"");
cgi->WriteHTMLBody(strReferer);
cgi->WriteHTMLBody("\">Back</A>where you came from.</P>\015\012");
}
if(!strWebmaster.IsEmpty())
//设置Server管理者的E-mail地址。
{
cgi->WriteHTMLBody("<P>Please email comments to");
cgi->WriteHTMLBody("<A HREF=\"mailto:");
cgi->WriteHTMLBody(strWebmaster);
cgi->WriteHTMLBody("\">");
cgi->WriteHTMLBody(strWebmaster);
cgi->WriteHTMLBody("</A>.</P>\015\012");
}
cgi->WriteHTMLBody("</BODY>\015\012");
cgi->WriteHTMLFooter();
}
4.结论
将程序编译后,把wincgi.exe拷入website/cgi-win/目录下,用浏览器
查询结果。至此简单地阐述了用VC++编写Win CGI程序的整个过程,C程序员也可以用自己熟悉的语言编写CGI
程序了。利用VC++的强大功能,你的WWW Server将无所不能。