如果您的a.com.cn站点需要与b.com.cn站点共享cookies,一般满足这种要求的系统是为了做单点登陆的,现在我来讲一下实现方法:
a.com.cn登陆后,写cookies,在b.com.cn里,登陆状态为已经登陆,即它们的cookies可以共享
在a.com.cn站里写cookies的同时,调用b.com.cn里的写cookies的方法,代码如下
<script type="text/javascript">
function CategoryRedirect(id, url) {
location.href = "/Help/CategoryRedirect?id="+id+"&url="+url;
}
</script>
controller代码文件:
[HttpGet]
/// <summary>
/// 需要跨域读取,写COOKIES(跨域有问题)
/// </summary>
/// <param name="id"></param>
/// <returns></returns>
public ActionResult CategoryRedirect()
{
this.ControllerContext.HttpContext.Response.AddHeader("cache-control", "no-cache");
VCommons.Http.CookieHelper.Remove("CategoryID");
VCommons.Http.CookieHelper.Write("CategoryID", Request["id"]);
ViewData["id"] = Request["id"];
ViewData["url"] = Request["url"];
return View();
}
VIEW文件
<script language="javascript">
window.onload = function() {
location.href = '<%=ViewData["url"] %>';
}
</script>
<div>
<iframe src='http://b.com.cn/setcookies.aspx?id=<%=ViewData["id"] %>' style="display:none"></iframe>
</div>
这样每页a.com.cn写COOKIES时,都调用了一个b.com.cn的写COOKIES的方法,达到的效果就是在b.com.cn里可以读到这个cookies。
同理如果b.com.cn要写的cookies在a.com.cn里共享的话,再用相同的方法做一次就可以了
b.com.cn里的设置cookies代码如下:
setcookies.aspx
public partial class setcookies : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
HttpContext.Current.Response.AddHeader("p3p", "CP=CURa ADMa DEVa PSAo PSDo OUR BUS UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR");
VCommons.Http.CookieHelper.Remove("CategoryID");
HttpCookie cookie = new HttpCookie("CategoryID", Request["id"]);
cookie.Domain = "c2cedu.com";
HttpContext.Current.Response.AppendCookie(cookie);
}
}