2
這是不好的做法嗎?ASP.NET MVC Session
using System.Web.Mvc;
namespace WebInventaris.Utils.Session
{
public static class SessionControllerExtensions
{
public static void SetSessionVar<T>(this Controller controller, string field, T value)
{
controller.Session[field] = value;
}
public static T GetSessionVar<T>(this Controller controller, string field)
{
return (T) controller.Session[field];
}
}
}
我想從我的控制器分開會話,但我沒有得到這些方法的好感。