Home > php教程 > php手册 > body text

C# javascript 读写Cookie

WBOY
Release: 2016-06-06 20:01:49
Original
1133 people have browsed it

第一:写Cookies Response.Cookies["UserName"].Value="Guest"; Response.Cookies["UserName"].Expires=DateTime.Now.AddDays(1); 第二:添加Cookies HttpCookie userName_zhengshu_Cookie = new HttpCookie("uname"); userName_zhengshu_Cookie.Value = "陈

  
第一:写Cookies

Response.Cookies["UserName"].Value="Guest";
Response.Cookies["UserName"].Expires=DateTime.Now.AddDays(1);

    
第二:添加Cookies

 HttpCookie userName_zhengshu_Cookie = new HttpCookie("uname");
        userName_zhengshu_Cookie.Value = "陈xx";


        HttpCookie userLession_zhengshur_Cookie = new HttpCookie("lcode");
        userLession_zhengshur_Cookie.Value = "chen jian ping";

        userName_zhengshu_Cookie.Path = "/";
        userLession_zhengshur_Cookie.Path = "/";

//限定有效期
        userLession_zhengshur_Cookie.Expires = DateTime.Now.AddDays(1);
        userName_zhengshu_Cookie.Expires = DateTime.Now.AddDays(1);

        Response.Cookies.Add(userLession_zhengshur_Cookie);
        Response.Cookies.Add(userName_zhengshu_Cookie);

//Cookies添加
 Response.AppendCookie(user_cookies);

//取值
Response.Write(Request.Cookies["uname"].Value);

 

//javascript写读Cookie
function Set_Cookie()
{
    var setValue="陈xx";
    var exdate=new Date();
    exdate.setDate(exdate.getDate()+365);
    document.cookie="userLession"+ "=" +setValue+";expires="+exdate.toGMTString()+";path=/";
    alert("已经写入Cookie");
}

 function Get(){     
     var cookieString=new String(document.cookie)    
     var cookieHeader = "userLession="    
     var beginPosition = cookieString.indexOf(cookieHeader)    
     if(beginPosition != -1)
     {    
       alert(cookieString.substring(cookieHeader.length,cookieString.indexOf(";"))); 
     }    
     
   }    

 

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!