pageContext物件的用法詳述

2022-03-06 17:07:02 字數 924 閱讀 6742

pagecontext物件 這個物件代表頁面上下文,該物件主要用於訪問jsp之間的共享資料。

getattribute(string name):取得page範圍內的name屬性。

setattribute(string name,值,int scope):如果沒有指定scope,該屬性預設在page範圍內,如:pagecontext.setattribute("page","hello");

使用pagecontext將屬性設定在request範圍中

pagecontext.

setattribute

("request2"

,"hello"

, pagecontext.request_scope)

;

使用pagecontext將屬性設定在session範圍中pagecontext.setattribute("session2","hello" , pagecontext.session_scope);

pagecontext.

setattribute(,

"hello"

;

getattribute(string name,int scope):取得指定範圍內的name屬性,

其中scope可以是如下4個值:

pagecontext.page_scope:對應於page範圍。

pagecontext.request_scope:對應於request範圍。

pagecontext.session_scope:對應於session範圍。

pageContext物件的用法

pagecontext物件 這個物件代表頁面上下文,該物件主要用於訪問jsp之間的共享資料。getattribute string name 取得page範圍內的name屬性。setattribute string name,值,int scope 如果沒有指定scope,該屬性預設在page範圍內...

pageContext物件的用法詳述

pagecontext物件 這個物件代表頁面上下文,該物件主要用於訪問jsp之間的共享資料。getattribute string name 取得page範圍內的name屬性。setattribute string name,值,int scope 如果沒有指定scope,該屬性預設在page範圍內...

pageContext物件的用法詳述

pagecontext物件 這個物件代表頁面上下文,該物件主要用於訪問jsp之間的共享資料。getattribute string name 取得page範圍內的name屬性。setattribute string name,值,int scope 如果沒有指定scope,該屬性預設在page範圍內...