0

I'm migrating a lot of WebForms applications (old site template). I'm develop a login in ASP .Net Core and create a shared cookie for several web applications, following this:

https://jakeydocs.readthedocs.io/en/latest/security/data-protection/compatibility/cookie-sharing.html

It's ok with new apps, but old web site ASP .NET don't use Startup.cs class

How to validate this cookie new ASP .NET Core in old Web Form application?

Thanks!

gutix
  • 1
  • 1
  • Upps, i forget "Core" in title ==> How to read ASP .Net CORE cookie in WebForms ASP .NET site – gutix Dec 03 '20 at 18:23

1 Answers1

0

If you're trying to do something in the equivalent "Startup.cs" from Core to Webforms, you can use the Global.asax class. Here's some more info: What is the purpose of global.asax in asp.net

Cowmoogun
  • 2,507
  • 4
  • 12
  • 17