用屬性封裝 Session 及 VIewState 的存取
在 ASP.NET 程式中常會 Session 及 VIewState 儲存狀態,一般的寫法都是直接存取 Session 或 ViewState,例如將變數值儲存於 Session 的寫法如下。
1 '將變數值儲存於 Session 中。
2 Dim oValue As New NameValueCollection
3 Session(KEY_SESSION) = oValue
4
5 '由 Session 中轉型取得變數值。
6 Dim oValue As NameValueCollection
7 oValue = CType(Session(KEY_SESSION), NameValueCollection)
8
不過上述的寫法有一些缺點:
1.每次存取 Session 時都要做型別轉換的動作,執行效能不佳。
2.容易因為 Session 鍵值錯誤,而造成不可預期的問題。
3.程式維護上較困難。例如改變鍵值或 Session 改儲存於 ViewState 中。
所以比較好的作法,就是使用屬性來封裝 Session 或 VIewState 的存取。以下的範例中,使用 SessionCollection 屬性來封裝 Session 的存取,ViewStateCollection 屬性來封裝 ViewState 的存取。
1 Private KEY_SESSION = "_SeesionCollection"
2 Private KEY_VIEWSTATE = "_ViewStateCollection"
3 Private FSessionCollection As NameValueCollection
4 Private FViewStateCollection As NameValueCollection
5
6 /**/'''
7 ''' 封裝 Session 存取的屬性。
8 '''
9 Private ReadOnly Property SeesionCollection()Property SeesionCollection() As NameValueCollection
10 Get
11 '若區域變數為 Nothing 才重新取得,防止重複做型別轉換的動作
12 If FSessionCollection Is Nothing Then
13 If Session(KEY_SESSION) Is Nothing Then
14 FSessionCollection = New NameValueCollection()
15 Session(KEY_SESSION) = FSessionCollection
16 Else
17 FSessionCollection = CType(Session(KEY_SESSION), NameValueCollection)
18 End If
19 End If
20 Return FSessionCollection
21 End Get
22 End Property
23
24 /**/'''
25 ''' 封裝 ViewState 存取的屬性。
26 '''
27 '''
28 Private ReadOnly Property ViewStateCollection()Property ViewStateCollection() As NameValueCollection
29 Get
30 '若區域變數為 Nothing 才重新取得,防止重複做型別轉換的動作
31 If FViewStateCollection Is Nothing Then
32 If ViewState(KEY_VIEWSTATE) Is Nothing Then
33 FViewStateCollection = New NameValueCollection()
34 ViewState(KEY_VIEWSTATE) = FSessionCollection
35 Else
36 FViewStateCollection = CType(ViewState(KEY_VIEWSTATE), NameValueCollection)
37 End If
38 End If
39 Return FViewStateCollection
40 End Get
41 End Property
42
當要使用封裝 Session 及 ViewState 時,就如同存取屬性一樣。
1 Protected Sub Button1_Click()Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
2 Dim iCount As Integer
3
4 iCount = Me.SeesionCollection.Count
5 Me.SeesionCollection.Add(iCount.ToString, iCount.ToString)
6
7 iCount = Me.ViewStateCollection.Count
8 Me.ViewStateCollection.Add(iCount.ToString, iCount.ToString)
9 End Sub
利用屬性封裝 Session 或 ViewState 的存取時,有下列優點:
1.撰寫程式程式碼時不用去理會 Seesion 或 ViewState,直接使用屬性即可,簡化程式程式碼及易讀性。
2.只做一次的型別轉換,執行效能較佳。
3.程式維護性佳。當 Session 或 ViewState 的鍵值變更或儲存目的改變時(如 Session 改為 ViewState),只需修改該屬性即可。
以上的做法雖然以 Session 及 ViewState 做示範,當然也可以使用相同方式來封裝 Application 及 Cache 的存取,也可達到上述的優點。
1 '將變數值儲存於 Session 中。
2 Dim oValue As New NameValueCollection
3 Session(KEY_SESSION) = oValue
4
5 '由 Session 中轉型取得變數值。
6 Dim oValue As NameValueCollection
7 oValue = CType(Session(KEY_SESSION), NameValueCollection)
8
不過上述的寫法有一些缺點:
1.每次存取 Session 時都要做型別轉換的動作,執行效能不佳。
2.容易因為 Session 鍵值錯誤,而造成不可預期的問題。
3.程式維護上較困難。例如改變鍵值或 Session 改儲存於 ViewState 中。
所以比較好的作法,就是使用屬性來封裝 Session 或 VIewState 的存取。以下的範例中,使用 SessionCollection 屬性來封裝 Session 的存取,ViewStateCollection 屬性來封裝 ViewState 的存取。
1 Private KEY_SESSION = "_SeesionCollection"
2 Private KEY_VIEWSTATE = "_ViewStateCollection"
3 Private FSessionCollection As NameValueCollection
4 Private FViewStateCollection As NameValueCollection
5
6 /**/'''
7 ''' 封裝 Session 存取的屬性。
8 '''
9 Private ReadOnly Property SeesionCollection()Property SeesionCollection() As NameValueCollection
10 Get
11 '若區域變數為 Nothing 才重新取得,防止重複做型別轉換的動作
12 If FSessionCollection Is Nothing Then
13 If Session(KEY_SESSION) Is Nothing Then
14 FSessionCollection = New NameValueCollection()
15 Session(KEY_SESSION) = FSessionCollection
16 Else
17 FSessionCollection = CType(Session(KEY_SESSION), NameValueCollection)
18 End If
19 End If
20 Return FSessionCollection
21 End Get
22 End Property
23
24 /**/'''
25 ''' 封裝 ViewState 存取的屬性。
26 '''
27 '''
28 Private ReadOnly Property ViewStateCollection()Property ViewStateCollection() As NameValueCollection
29 Get
30 '若區域變數為 Nothing 才重新取得,防止重複做型別轉換的動作
31 If FViewStateCollection Is Nothing Then
32 If ViewState(KEY_VIEWSTATE) Is Nothing Then
33 FViewStateCollection = New NameValueCollection()
34 ViewState(KEY_VIEWSTATE) = FSessionCollection
35 Else
36 FViewStateCollection = CType(ViewState(KEY_VIEWSTATE), NameValueCollection)
37 End If
38 End If
39 Return FViewStateCollection
40 End Get
41 End Property
42
當要使用封裝 Session 及 ViewState 時,就如同存取屬性一樣。
1 Protected Sub Button1_Click()Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
2 Dim iCount As Integer
3
4 iCount = Me.SeesionCollection.Count
5 Me.SeesionCollection.Add(iCount.ToString, iCount.ToString)
6
7 iCount = Me.ViewStateCollection.Count
8 Me.ViewStateCollection.Add(iCount.ToString, iCount.ToString)
9 End Sub
利用屬性封裝 Session 或 ViewState 的存取時,有下列優點:
1.撰寫程式程式碼時不用去理會 Seesion 或 ViewState,直接使用屬性即可,簡化程式程式碼及易讀性。
2.只做一次的型別轉換,執行效能較佳。
3.程式維護性佳。當 Session 或 ViewState 的鍵值變更或儲存目的改變時(如 Session 改為 ViewState),只需修改該屬性即可。
以上的做法雖然以 Session 及 ViewState 做示範,當然也可以使用相同方式來封裝 Application 及 Cache 的存取,也可達到上述的優點。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12921506/viewspace-261509/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- ViewState Session Static區別ViewSession
- session的存取問題Session
- session屬性的清除和非法登入Session
- 一、類的封裝性封裝
- ViewState靈活運用View
- Application、Session、Cookie、ViewState、Cache、Hidden的區別 (總結)APPSessionCookieView
- 應用程式池屬性詳解及配置
- 淺析 C++ 的封裝性C++封裝
- ViewStateView
- 用Apache的CGI封裝器來加強安全性(轉)Apache封裝
- 盒子屬性,及浮動
- UITableView 常用屬性及方法UIView
- Struts的Indexed屬性用處Index
- js 物件使用點和中括號存取屬性區別是什麼JS物件
- 揭秘Java反射:如何輕鬆獲取類的屬性及父類屬性Java反射
- After Effects 圖層屬性及屬性組結構詳解
- 禁用ViewStateView
- HTML表格標記及屬性HTML
- 【Django drf】檢視類APIView之五層封裝 ApiView的類屬性 drf配置檔案DjangoAPIView封裝
- EF Core 索引器屬性(Indexer property)場景及應用索引Index
- 淺談Flex佈局的屬性及使用Flex
- lavarel 8 ES封裝及使用封裝
- ReactNative自定義元件及屬性React元件
- Flex佈局教程及屬性速查Flex
- 基於celery及redis封裝sanic的apiRedis封裝API
- C# ViewStateC#View
- V$session 及該檢視的小運用Session
- 分享:用promise封裝ajaxPromise封裝
- element-ui 通用表單封裝及VUE JSX應用UI封裝VueJS
- http-equiv的各個屬性及意義HTTPUI
- javascript應用cookie的封裝程式碼JavaScriptCookie封裝
- mybatis中查詢出多個以key,value的屬性記錄,封裝成一個map返回的方法MyBatis封裝
- CMake 屬性之全域性屬性
- shopify 屬性新增圖片及樣式
- 檔案屬性及find命令總結
- React Native 自定義元件及屬性React Native元件
- html5新增及廢除屬性HTML
- 關於TornadoFx和Android的全域性配置工具類封裝實現及思路解析Android封裝