Я хочу установить http cook ie, когда клиент загружает индекс. html.
context.Response.Cookies.Append(key, value, new CookieOptions
{
Expires = new DateTimeOffset(DateTime.Now.AddDays(1)),
HttpOnly = true,
Secure = true,
SameSite = SameSiteMode.Strict
});
Я понятия не имею, где я могу поместить его в код сервера.
Все дело в индексе. html на сервере:
app.UseEndpoints(endpoints =>
{
endpoints.MapDefaultControllerRoute();
endpoints.MapFallbackToClientSideBlazor<Client.Program>("index.html");
});