I have a site that uses the SqlMembershiprovider. Its is a webshop. The user logs on with his username and password there.
Apart from that there is controller that is responsible for displaying delivery details for orders, that are imported from another system. These orders have no connection to users in the membershipsystem. To display delivery details you have to give the ordernumber and a token that is printed on the invoice.
To allow access I would like to implement a custom membershiprovider that is used only for this single controller. Is it feasible to use 2 different providers for one application?
EDIT
There are a couple of pages that the user can access once he provided the ordernumber and token.