Cookie取值的问题,急急急!!!
意图:
两个项目A、B
点击A项目中某个按钮把页面地址转到B项目中的某个页面。B项目会判断某个指定名称的Cookie是否存在,并且值要等于指定的值,如果不是,则不让A直接访问页面,而是转到自己的首页(index.aspx)
A访问按钮代码如下:
protected void Button1_Click(object sender, EventArgs e)
{
HttpCookie myCookie = new HttpCookie("JavaCookie", "64A4B5232073F759");
Response.Cookies.Add(myCookie);
Response.Redirect("http://IP地址/WorkFlow/DengJiQueRen_ProjectList.aspx?javaFlag=1");
}
HttpCookie javaCookie = Request.Cookies["JavaCookie"];
if (javaCookie != null && javaCookie.Value == "64A4B5232073F759")
{ }
else
Response.Redirect("~/Index.aspx");