Command_Session.cs 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. 
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. using System.Web;
  6. namespace LYFZ.Command
  7. {
  8. public class Command_Session
  9. {
  10. /// <summary>
  11. /// 添加Session,有效期为20分钟
  12. /// </summary>
  13. /// <param name="strSessionName">Session对象名称</param>
  14. /// <param name="objValue">Session值</param>
  15. public static void AddObject(string strSessionName, object objValue)
  16. {
  17. HttpContext.Current.Session[strSessionName] = objValue;
  18. HttpContext.Current.Session.Timeout = 20;
  19. }
  20. /// <summary>
  21. /// 添加Session,有效期为20分钟
  22. /// </summary>
  23. /// <param name="strSessionName">Session对象名称</param>
  24. /// <param name="strValue">Session值</param>
  25. public static void Add(string strSessionName, string strValue)
  26. {
  27. HttpContext.Current.Session[strSessionName] = strValue;
  28. HttpContext.Current.Session.Timeout = 20;
  29. }
  30. /// <summary>
  31. /// 添加Session,有效期为20分钟
  32. /// </summary>
  33. /// <param name="strSessionName">Session对象名称</param>
  34. /// <param name="strValues">Session值数组</param>
  35. public static void Adds(string strSessionName, string[] strValues)
  36. {
  37. HttpContext.Current.Session[strSessionName] = strValues;
  38. HttpContext.Current.Session.Timeout = 20;
  39. }
  40. /// <summary>
  41. /// 添加Session
  42. /// </summary>
  43. /// <param name="strSessionName">Session对象名称</param>
  44. /// <param name="objValue">Session值</param>
  45. /// <param name="iExpires">有效期(分钟)</param>
  46. public static void AddObject(string strSessionName, object objValue, int iExpires)
  47. {
  48. HttpContext.Current.Session[strSessionName] = objValue;
  49. HttpContext.Current.Session.Timeout = iExpires;
  50. }
  51. /// <summary>
  52. /// 添加Session
  53. /// </summary>
  54. /// <param name="strSessionName">Session对象名称</param>
  55. /// <param name="strValue">Session值</param>
  56. /// <param name="iExpires">有效期(分钟)</param>
  57. public static void Add(string strSessionName, string strValue, int iExpires)
  58. {
  59. HttpContext.Current.Session[strSessionName] = strValue;
  60. HttpContext.Current.Session.Timeout = iExpires;
  61. }
  62. /// <summary>
  63. /// 添加Session
  64. /// </summary>
  65. /// <param name="strSessionName">Session对象名称</param>
  66. /// <param name="strValues">Session值数组</param>
  67. /// <param name="iExpires">有效期(分钟)</param>
  68. public static void Adds(string strSessionName, string[] strValues, int iExpires)
  69. {
  70. HttpContext.Current.Session[strSessionName] = strValues;
  71. HttpContext.Current.Session.Timeout = iExpires;
  72. }
  73. /// <summary>
  74. /// 读取某个Session对象值
  75. /// </summary>
  76. /// <param name="strSessionName">Session对象名称</param>
  77. /// <returns>Session对象值</returns>
  78. public static object GetObject(string strSessionName)
  79. {
  80. if (HttpContext.Current.Session[strSessionName] == null)
  81. {
  82. return null;
  83. }
  84. else
  85. {
  86. return HttpContext.Current.Session[strSessionName];
  87. }
  88. }
  89. /// <summary>
  90. /// 读取某个Session对象值
  91. /// </summary>
  92. /// <param name="strSessionName">Session对象名称</param>
  93. /// <returns>Session对象值</returns>
  94. public static string Get(string strSessionName)
  95. {
  96. if (HttpContext.Current.Session != null)
  97. {
  98. if (HttpContext.Current.Session[strSessionName] != null)
  99. {
  100. return HttpContext.Current.Session[strSessionName].ToString();
  101. }
  102. }
  103. return null;
  104. }
  105. /// <summary>
  106. /// 读取某个Session对象值数组
  107. /// </summary>
  108. /// <param name="strSessionName">Session对象名称</param>
  109. /// <returns>Session对象值数组</returns>
  110. public static string[] Gets(string strSessionName)
  111. {
  112. if (HttpContext.Current.Session[strSessionName] == null)
  113. {
  114. return null;
  115. }
  116. else
  117. {
  118. return (string[])HttpContext.Current.Session[strSessionName];
  119. }
  120. }
  121. /// <summary>
  122. /// 删除某个Session对象
  123. /// </summary>
  124. /// <param name="strSessionName">Session对象名称</param>
  125. public static void Del(string strSessionName)
  126. {
  127. HttpContext.Current.Session[strSessionName] = null;
  128. }
  129. }
  130. }