SelectPdf Free Html To Pdf Converter for .NET C# / ASP.NET - Helper Page - View HTTP Cookies

This page shows the HTTP Cookies sent to it:

handl_ip: 3.138.69.153
_visitor_id: -O2n44P30pCHWWqF4wXy
HandLtestDomainNameServer: HandLtestDomainValueServer
handl_landing_page: https%3A%2F%2Fstarface.com%2Fmade-in-germany-ist-kein-mythos%2F
user_agent: Mozilla%2F5.0%20AppleWebKit%2F537.36%20%28KHTML%2C%20like%20Gecko%3B%20compatible%3B%20ClaudeBot%2F1.0%3B%20%2Bclaudebot%40anthropic.com%29
handl_url: https%3A%2F%2Fstarface.com%2Fmade-in-germany-ist-kein-mythos%2F
_auth_token: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ2aXNpdG9ySWQiOiItTzJuNDRQMzBwQ0hXV3FGNHdYeSIsImF1dGhlbnRpY2F0ZWQiOm51bGwsImF1dGhQcm92aWRlciI6bnVsbCwiZXhwIjoxNzI0NjU3MTE0LCJpYXQiOjE3MjIwNjUxMTR9.y8bqwdTpzp0KV1EKgNtnE-mFisHWYTMhYRoPVQ9gNpA
handl_url_base: https%3A%2F%2Fstarface.com%2Fmade-in-germany-ist-kein-mythos%2F


Sample Code C#



using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace SelectPdf.Samples
{
    public partial class view_http_cookies : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            string cookies = string.Empty;
            foreach (string key in Request.Cookies)
            {
                HttpCookie cookie = Request.Cookies[key];
                cookies += "<br/>" + cookie.Name + ": " + cookie.Value;
            }

            LitCookies.Text = cookies;
        }
    }
}