ASP.NET Core 8 Redirect request if controller doesn’t exist
I’m porting an app to .NET 8. I would like to port this existing app one section at time. My hope is I can set something where if a request is made to a function that doesn’t exist the caller can be redirected to the old app.
How can I get my .NET 8 web app to properly decrypt data protected when it was running on .NET 6?
I have an ASP.NET Core web application that uses data protection to encrypt/decrypt values stored in a database. The app was original written in .NET 3.1, later migrated to .NET 6, and now to .NET 8. The problem I am having is that after upgrading to .NET 8, the app encounters an error trying to decrypt the previously stored values. Reverting to .NET 6 enables the decryption to work correctly again.