servlet
adevotee
这个作者很懒,什么都没留下…
展开
-
JSP基本要素
JSP指令和脚本元素 Directives Declarations Expressions Code Fragment/Scriptlet Comments 页面指示 定义整个JSP页面的属性 java"] [extends=原创 2007-06-27 16:50:00 · 1534 阅读 · 0 评论 -
servet的doget和post请求,以及getparameter方法
url="http://host/path?user=Marty+Hall&origin=bwi&dest=lax”。这个URL中位于问号后面的部分,即“user=Marty+Hall&origin=bwi&dest=lax”,就是表单数据,这是将Web页面数据发送给服务器程序的最常用方法。对于GET请求,表单数据附加到URL的问号后面(如上例所示);对于POST请求,表单数据用一个单独的行发送原创 2007-06-27 17:38:00 · 2392 阅读 · 0 评论 -
上传的编码和jspform的编码
jsp中form对应的encoding是 eqptmgntForm.encoding= "application/x-www-form-urlencoded" ;而上传时对应的编码是 eqptmgntForm.encoding= "multipart/form-data" ;因为上传时需可能有多种文件格式,所以不能用应用程序的编码。但是在设置了编码之后,如果同时用到了这原创 2009-02-04 11:41:00 · 683 阅读 · 0 评论