Jasinski Technical Wiki

Navigation

Home Page
Index
All Pages

Quick Search
»
Advanced Search »

Contributor Links

Create a new Page
Administration
File Management
Login/Logout
Your Profile

Other Wiki Sections

Software

PoweredBy

Page History: SessionVar Class - ASP.NET

Compare Page Revisions



« Older Revision - Back to Page History - Current Revision


Page Revision: Wed, Nov 18, 2009, 8:49 AM


This page is part of the Class Library Pages collection.
Click the icon to see the index.
This class depends on the Parser class, found here.

Overview

The SessionVar class provides a means of working with Session Variables in any ASP.NET website.

Implementation

  1. Copy the source code, found below
  2. Modify the Key enum to suit your requirements
  3. Modify the static constructor to fill the _dict dictionary.

Source Code

VB.NET

{copytext|VbSource}
Imports System
Imports System.Data
Imports System.Data.SqlClient
Imports System.Collections
Imports System.Configuration
Imports System.Collections.Generic

Public Class SessionVar
    Public Enum Key
        AppVerId
        LastAreaCode
    End Enum

    Private Shared _dict As Dictionary(Of Key, String)

    '----------------------------------------------------------------------------------------------
    Shared Sub New()
        _dict = New Dictionary(Of Key, String)()
        _dict.Add(Key.AppVerId, "AppVerId")
        _dict.Add(Key.LastAreaCode, "LastAreaCode")
    End Sub
    '----------------------------------------------------------------------------------------------
    Public Shared Function GetKey(ByVal key As Key) As String
        Return _dict(key)
    End Function
    '----------------------------------------------------------------------------------------------
    Public Shared Function GetValue(ByVal key As Key, Optional ByVal defaultValue As String = "") _
    As String

        Dim s As String = ""

        Dim request As HttpRequest = HttpContext.Current.Request

        If request IsNot Nothing Then
            s = request.QueryString(_dict(key))
            If s Is Nothing Then
                s = ""
            End If
        End If

        If s.Length = 0 Then
            s = defaultValue
        End If

        Return s

    End Function
    '----------------------------------------------------------------------------------------------
    Public Shared Function TryGetValue(Of T)(ByVal key As Key, ByRef value As T) As Boolean

        Return Parser(Of T).TryParse(GetValue(key), value)

    End Function
    '----------------------------------------------------------------------------------------------
    Public Shared WriteOnly Property [Set](ByVal key As Key) As String
        Set(ByVal value As String)
            Try
                _dict(key) = value
            Catch ex As Exception
                Throw ex
            End Try
        End Set
    End Property

End Class

C#

TODO

ScrewTurn Wiki version 3.0.1.400. Some of the icons created by FamFamFam. Except where noted, all contents Copyright © 1999-2024, Patrick Jasinski.