setheader/addheader(string head,string value);
處理表單提交資訊中的漢字:1.<%@ page contenttype="text/html";charset=gb2312" %>;
2.重新編碼`
<% string str=request.getparameter("number");`
byte c=str.getbytes("iso-8859-1");
str=new string(c); %>;
3.form盡量使用method=「post」,這樣只需要設定request.setcharacterencoding("gb2312");
就可以應付中文亂碼問題。
response.setcontenttype(string s)
方法動態改變contenttype的屬性值,
建立與使用bean
bean的有效範圍
scope取值page
scope取值page的bean只在當前頁面有效,直到頁面執行完畢。
scope取值session
scope取值為session的bean在使用者訪問的web服務目錄的各個頁面都有效,直到使用者的會話(session)消失。
scope取值request
scope取值為request的bean存活時間略長與page,因為jsp引擎認為頁面執行完畢後,相應才結束
獲取和修改bean的屬性
getproperty動作標記
setproperty動作標記
」/>
用html表單的某個引數的值設定bean的某個屬性值的使用格式:
習題答案: JSP基礎知識總結二
setheader addheader string head,string value 處理表單提交資訊中的漢字 1.page contenttype text html charset gb2312 2.重新編碼 string str request.getparameter number by...
基礎知識點複習 JSP 二
jsp資料傳遞 一 任務 1.實現新聞系統使用者註冊 2.在新聞系統中儲存使用者狀態 3.登入時自動填寫使用者名稱。4.統計頁面被訪問次數 二 目標 掌握request和response的使用 解決頁面亂碼 掌握 與重定向的區別 掌握session 三 request 通過請求,a頁面給b頁面傳送乙...
jQuery基礎知識總結(二)
jquery基本總結 二 內容選擇器 contains text 返回包含指定的文字元素 parent 返回匹配子元素的元素 has text 返回包含指定元素的元素 empty 返回無文字或者空元素 可見性 visible 匹配所有可見的元素 hidden 匹配所有不可見的元素 只要在頁面上不顯示...