美文网首页
asp.net中通过cookie传递参数的代码

asp.net中通过cookie传递参数的代码

作者: 程序猿族 | 来源:发表于2018-12-12 16:02 被阅读0次

    把写内容过程中比较常用的内容段做个备份,如下内容是关于asp.net中通过cookie传递参数的内容。

    HttpCookie cookie = new HttpCookie("mycookie");

    cookie.Value = "cookie值";

    Response.AppendCookie(cookie);

    Response.Redirect("index.aspx");

    Request.Cookies["mycookie"].Value.ToString();

    相关文章

      网友评论

          本文标题:asp.net中通过cookie传递参数的代码

          本文链接:https://www.haomeiwen.com/subject/rlkphqtx.html