学习心得一
时间:2009-04-03 来源:hkebao
1.<title>ual - Starting the server</title><link href="manual.css" type="text/css" rel="stylesheet">Starting the server
其中有几个参数配置说明项:
HTTPD_PORT 端口
bindname - the hostname the server will bind on, None (default) means only the current host 指定一个绑定的域名或IP值。
var = self.Request.getServerName() 可以通过Request对象来提取出来服务器名
页面提交的FORM表单的内容如下:
<input type="text" name="names">
服务器接收端的信息如下:names = self.Request.getParameter("names")
学习新的一种动态的脚本语言。应用服务器就是这个东西!然后搭建一个简单的应用程序平台。有自己独立的语言脚本!
其中有几个参数配置说明项:
HTTPD_PORT 端口
bindname - the hostname the server will bind on, None (default) means only the current host 指定一个绑定的域名或IP值。
var = self.Request.getServerName() 可以通过Request对象来提取出来服务器名
页面提交的FORM表单的内容如下:
<input type="text" name="names">
服务器接收端的信息如下:names = self.Request.getParameter("names")
学习新的一种动态的脚本语言。应用服务器就是这个东西!然后搭建一个简单的应用程序平台。有自己独立的语言脚本!
相关阅读 更多 +