I have an asp.net web project which uses a SqlProfileProvider for membership structure,i am calling that project A .
Can i use that membership from another asp.net project, project B ?
I've tried same connectionstring on project B, but i am getting LoginError with asp.net Login control.
But if i try call a member with code on project B, as follows;
MembershipUser oneUser = Membership.GetUser("a user name from project A");
it works. and it shows me that connectionstrings and other membership params work on B.
But if i use standart Login control on a page, it falls to LoginError method.
thanks in advance for all comments.
EDIT:
solved by custom web control..