嵌入式软件工程师&&太极拳
全部博文(548)
发布时间:2013-04-24 11:26:33
goAhead Web服务器,小巧、精致、稳定,提供了值得称道的性能,特别适合于嵌入式系统,因此,在很多嵌入式产品如路由器中都用到了goAhead作为嵌入式web服务器。goAhead嵌入式Web服务器,具有如下特点:支持ASP;嵌入式的JavaScript,即Ejscript;支持内存中的CGI处理;快速.........【阅读全文】
发布时间:2013-03-30 14:07:30
http://embedthis.com/products/goahead/ ......【阅读全文】
发布时间:2013-03-30 14:01:56
啥都不说,直接看代码!简单输出代码#include <stdio.h>#include <stdlib.h> #include <string.h>void main() { printf("Content-type:text/html\n\n");printf("hello world!");fflush(stdout);} 处理get代码#include <stdio.h>#include <stdlib.h>int zmain(void){char *data;long m,n;p.........【阅读全文】
发布时间:2013-03-30 13:57:58
一、CGI概述 CGI(Common Gateway Interface: 公用网关接口)规定了Web服务器调用其他可执行程序(CGI程 序)的接口协议标准。Web服务器通过调用CGI程序实现和Web浏览器的交互,也就是CGI程序接受Web浏览器发送给Web服务器的信息,进行处理,将响应结果再回送给Web服务器及Web浏览器。CGI程序一般完成Web网页中表单(For.........【阅读全文】