博客园站长
这是人类成长进步中记录的每一时刻

 

js里面这样写:

function getCookie() {
var search = "RH.RHR" + "="
if (document.cookie.length > 0) {
offset = document.cookie.indexOf(search)
if (offset != -1) {
offset += search.length
end = document.cookie.indexOf(";", offset)
if (end == -1) end = document.cookie.length
alert(document.cookie.length);
return unescape(document.cookie.substring(offset, end))
}
else return ""
}
}


后台取:
string username=Request.Cookies["UserName"].ToString();

posted on 2012-05-25 11:08  dm3344  阅读(272)  评论(0编辑  收藏  举报