/**//// <summary>
/// Stores the specified session-value to the specified session-key.
/// </summary>
/// <param name="eKey">The key for the value to store in the session.</param>
/// <param name="oValue">The value to store in the session</param>
private static void SetValue ( eKeys eKey, Object oValue)
 {
HttpContext.Current.Items[eKey.ToString()] = oValue;
}
#endregion

 /**//// <summary>
/// An enum for the
/// </summary>
private enum eKeys
 {
UserID
}
}
}
上一页 [1] [2] [3] [4] [5] |