Jeff Keslinke
Jeff Keslinke

Reputation: 4358

IdentityServer4 + Legacy .Net WebForms Application

We have a legacy .net 4.5.2 WebForms application that uses an old customized version of IdentityServer2 for auth. We have an opportunity to replace it right now, but all the setup examples I see for IdentityServer4 assume an MVC application.

Does IdentityServer4 support WebForms applications out of the box? I'm not interested in turning this application into anymore of a Frankenstein.

Upvotes: 5

Views: 4633

Answers (1)

user4864425
user4864425

Reputation:

Basically any oidc provider will do for the client, in order to communicate with IdentityServer4. The question is not if IdentityServer4 supports web applications, but if you can find client side code to communicate with IdentityServer4.

For 4.5.2 applications you can use IdentityServer3 NuGet packages. Please read this article. Can it be used for webforms? Yes, according to this question. There is also a webforms sample available.

Upvotes: 3

Related Questions