AndyMM
AndyMM

Reputation: 910

Is using the ASP.NET Membership providers in winforms application a bad idea?

Can anyone think of a reason not use the ASP.NET membership providers in a winforms application?

Has anyone have experience doing this?

Upvotes: 3

Views: 1625

Answers (1)

to StackOverflow
to StackOverflow

Reputation: 124746

Using ASP.NET membership providers on a client in a WinForms application is insecure, since a malicious user can replace the provider by one of his own choosing simply by editing the application configuration file.

What exactly are you trying to achieve, and is security important?

Upvotes: 5

Related Questions