把写内容过程中比较常用的内容段做个备份,如下内容是关于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传递参数的内容。
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
网友评论