CPPSERV是一个C++的Web应用服务器,它提供类似小服务程序(Servlet)以及CSP(C++ServerPages)功能,你可以用它来使用C++语言开发Web页面。CPPServ还提供了用来跟Apache和Lighttpd集成的模块。
下面是一个CSP的简单例子:
<%@pageimport="time.h"session="false"%><%time_tnow=time(NULL);%>HelloWorld!ThisisasampleCSP(C++ServerPage)!Localtime<%=ctime(&now)%>
评论