I have 2 ASP.NET applications, one is ASP.NET WebForms on .NET 4.5, and the other in an ASP.NET Core 6 app.
The connection of the user is done on the application in WebForms. When the user is connected, I have to redirect him to the ASP.NET Core application and it must automatically identify the user who has connected.
I use an authentication cookie on the webforms application with FormsAuthenticationTicket.
Is it possible to share this cookie between the 2 applications?
If I ask you this question it's because I'm stuck.
I found some resources about sharing the authentication cookie between ASP.NET MVC and Core applications but I can't find anything for Webforms applications
Thanks for your help !