代码如下:
[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