Request.Cookies : Request « Page Lifecycle « ASP.NET Tutorial






<script language="C#" runat="server" trace="true" >
protected void Page_Load(object o, EventArgs e) {
HttpCookie outbound = new HttpCookie("MyCookie");

HttpCookie inbound = Request.Cookies["MyCookie"];
if(inbound != null) {
    outbound.Value = (Int32.Parse(inbound.Value) + 1).ToString();
    theLabel.Text = inbound.Value;
}
else {
    outbound.Value = "1";
}
Response.Cookies.Add(outbound);
}
</script>
<asp:label runat="server" id="theLabel" Text="no cookie value received" />








5.8.Request
5.8.1.Get Request.UserLanguages
5.8.2.Request.UrlReferrer
5.8.3.Request.QueryString
5.8.4.Request.Cookies
5.8.5.Get browser information
5.8.6.Request.ServerVariables
5.8.7.Filtering the HTTP Request body using InputStream
5.8.8.Showing Parameters via the Params Collection in ASP.NET
5.8.9.Getting cookie values
5.8.10.Displaying additional path information in ASP.NET
5.8.11.Showing QueryString values via the QueryString Collection in ASP.NET
5.8.12.Displaying the HTTP headers collection in ASP.NET
5.8.13.Displaying the Request.FilePath property in ASP.NET
5.8.14.Request.Headers