I try to set my cookie up to my website but when I write Http Cookie into the code,
my code looks like this:
HttpCookie StudentCookies = new HttpCookie("StudentCookies");
StudentCookies.Value = 1;
Response.Cookies.Add(StudentCookies);
error are:
The type or namespace name 'HttpCookie' could not be found (are you missing a using directive or an assembly reference?) TestMVCLagerSystem.DNX 4.5.1
'Response' does not contain a definition for 'Cookies' TestMVCLagerSystem.DNX 4.5.1
i have try to looke here: