当前位置: 代码迷 >> ASP.NET >> Web Services 无法写入Cookies,该怎么处理
  详细解决方案

Web Services 无法写入Cookies,该怎么处理

热度:10032   发布时间:2013-02-26 00:00:00.0
Web Services 无法写入Cookies
代码如下:


[WebMethod()]
public   string   CheckLogin(string   name,string   UserID,   string   NiCheng,   string   leixing)
{

HttpCookie   myCookie   =   new   HttpCookie( "QuanYou ");
myCookie.Values.Add( "UserID ",UserID.ToString());
myCookie.Values.Add( "UserName ",name.ToString());
myCookie.Values.Add( "NiCheng ",NiCheng.ToString());
myCookie.Values.Add( "Admin ",leixing.ToString());
Context.Response.AppendCookie(myCookie);
return   "ok ";
}


但不用Web   Services就可以正常写入Cookies

------解决方案--------------------------------------------------------
設置myCookie.Expires試試
------解决方案--------------------------------------------------------
是不是domain的问题?
  相关解决方案