js|文法
jsp文法:
jsp指令元素
(1)include:匯入其它檔案夾
(2)page:
language:用什麼語言,只能為JAVA
contentType:MIME類型
import:匯入java包
(3)taglib:自訂標籤庫
jsp常用標準元素
(1)jsp:forward:跳轉到其它頁面
(2)jsp:include:插入其它檔案 eg:
(3)jsp:plugin:插入applet小程式
(4)jsp:param:參數傳值
jsp內建對象
(1)request:常用方法
getParameter():提取表單元素的值
getRemoteAddr():擷取用戶端IP值
(2)response:
sendRedirect():重新導向到其它網頁
setcontentType();設定MIME值
(3)out:向網頁輸出
(4)application
setAttribute(String,Object)把變數的值儲存在application中;
getAttribute(String)擷取儲存在applicaion中的值
removeAttribute(String)刪除儲存在application中的值
(5)session
setAttribute(String,Object)把變數的值儲存在session中;
getAttribute(String)擷取儲存在session中的值
removeAttribute(String)刪除儲存在
getID:擷取session編號
jsp簡單表單處理
<%@page contentType="text/html;charset=gb2312"%><%@page language="java" %><html><head><title>表單處理</title></head> <form name="frm" method="GET" action="ch-show.jsp"><table boder=0><tr><td>使用者名稱:</td><td><input type=text name="Tname"></td></tr><tr><td>密碼:</td><td><input type=password name="Tpass"></td></tr><tr><td>性別:</td><td><input type=radio name="Tsex" value="男" checked>男<input type=radio name="Tsex" value="女">女</td></tr><tr><td>愛好:</td><td><input type=checkbox name=Tch1 value="體育">體育<input type=checkbox name=Tch2 value="美術">美術<input type=checkbox name=Tch3 value="音樂">音樂</td></tr><tr><td>專業:</td><td><select name=Ty><option value="電腦">電腦</option><option value="文學">文學</option><option value="數學">數學</option></select><tr><td>留言:</td><td><textarea name=Tl rows=5 cols=20></textarea></td></tr><tr><td><input type=submit value="使用者資訊"></td></tr></table></form> <%String Tname=request.getParameter("Tname");String Tpass=request.getParameter("Tpass");String Tsex=request.getParameter("Tsex");String Tlove1=request.getParameter("Tch1");String Tlove2=request.getParameter("Tch2");String Tlove3=request.getParameter("Tch3");String Ty=request.getParameter("Ty");String Tl=request.getParameter("Tl"); byte b1[]=Tsex.getBytes("ISO-8859-1");Tsex=new String(b1);if(Tlove1==null){Tlove1="";}else{byte b2[]=Tlove1.getBytes("ISO-8859-1");Tlove1=new String(b2);}if(Ty==null){Ty="";}else{byte b5[]=Ty.getBytes("ISO-8859-1");Ty=new String(b5);}if(Tlove2==null){Tlove2="";}else{byte b3[]=Tlove2.getBytes("ISO-8859-1");Tlove2=new String(b3);}if(Tlove3==null){Tlove3="";}else{byte b4[]=Tlove3.getBytes("ISO-8859-1");Tlove3=new String(b4);} out.print("你的資訊是:"+"<br>");out.print("使用者名稱"+Tname+"<br>");out.print("密碼"+Tname+"<br>");out.print("性別"+Tsex+"<br>");out.print("愛好"+Tlove1+Tlove2+Tlove3+"<br>");out.print("專業"+Ty+"<br>");out.print("留言"+Tl+"<br>");%></body> |