相关疑难解决方法(0)

如何从WebMethod更改cookie值?

  [WebMethod]
  public static void SetTheme(string theme)
  {
   Guid studentIdentifier = SessionData.LoggedInUser.Identifier;
   Student student = (Student)ItemFactory.GetItem(studentIdentifier);
   student.Theme = theme;
  }
Run Code Online (Sandbox Code Playgroud)

我想在这个WebMethod的末尾更改名为"theme"的cookie.我怎么能做到这一点?必须在此处设置cookie,而不是通过JavaScript.这是一项要求.谢谢

asp.net cookies

1
推荐指数
1
解决办法
5589
查看次数

标签 统计

asp.net ×1

cookies ×1