Integrating Okta into Asp.Net Webforms without Startup.cs

Ours is Old ASP>Net application. It has global.asax page only… not startup.cs. How to implements OKTA in this scenario. I have a sample ASP.Net MVC application and its working fine. Need to implement in asp.net. Kindly help

You can add a startup using the Owin packages for the ASP.Net framework.

1 Like

As @kennedyas3 stated, you can use OWIN to add authentication. You can read more on that here.

Here is a blog on how it can be done on ASP.NET web forms application.

2 Likes

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.