

Java技术
2005: 03 04 05 06 07 08
09 10 11 12
2006: 01 02
Asp.net
2005: 07 08 09 10 11 12
2006: 01 02

| String host = "localhost"; //服务器地址,可以是ip,域名或者机器名 int port = 80; //段口号 String webRoot = "TestRichClient"; //Web根目录,如果没有,可以设置为null StandardSession session = new StandardSession(host, port, webRoot); //定义连接,将在第一次访问服务器的时候新建Session,以后将每次访问保持这个Session |
|
String action = "TestAction"; //Action名 action = "AddAction"; //调用AddAction |
说明