Ok, solved this problem. The solution was to find a way not to just open the project in vs.
Now, I can login to admin area.
I have set up the connection string, and that works.
However, just to test, I have tried to fill up the userlist by maually add users in Global.asax:
ArrayList names = new ArrayList();
names.Add("bareare");
names.Add("asdasd");
names.Add("asde");
names.Add("3");
names.Add("2");
return (string[])names.ToArray(typeof(string));
This I have done in ListUserUniqueName and SearchUserUniqueNameByDisplayName. In GetDisplayName and getuniquename, I put return "bareAre";
The userlist is empty, and (Unknown) is displayed above the userlist.
What can I do to fix this? I seem very close to the target, I now want to get something up and running since I have struggeled with this for a long time.