pageContext物件的用法詳述

2022-09-05 10:45:12 字數 667 閱讀 9750

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); 

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範圍內...