Microsoft Membership Provider Vs Custom Provider Vs Complete Custom Login System

前端 未结 4 659
眼角桃花
眼角桃花 2021-02-02 09:08

I am currently converting a very old, but working classic ASP site to ASP.Net.

It has a completely custom written user management system. Whilst it work

4条回答
  •  滥情空心
    2021-02-02 09:45

    I've been in similar situations in the past. In both cases we created custom implementations of the providers (MembershipProvider, RoleProvider, ProfileProvider) around the existing mechanism.

    In both cases we only used the provider implementations for read-only access, e.g. to give us the easy validation gubbins in web.config and suchlike. The user administration code was left well alone as it worked just fine.

提交回复
热议问题