我正在从 url 中检索租户名称。我宁愿只做一次,将它存储在 cookie 中,当我在新页面请求中需要它时从那里检索它。
我正在使用下面的代码来“创建”一个 cookie。我希望该界面可以让我存储其他信息,但事实并非如此。有没有办法做到这一点,还是我走错了路?
public void SignIn(string userName, bool createPersistentCookie)
{
if (String.IsNullOrEmpty(userName))
throw new ArgumentException("Value cannot be null or empty.", "userName");
FormsAuthentication.SetAuthCookie(userName, createPersistentCookie);
}
提前致谢。