Using the webforms template from Visual Studio 2013
I have this working and can log in a user. My need is this, I have another system that will be integrated into this website that I'm building. With this integration I'll be sending over a userid of the logged in user to the second application. The second
application then in turn needs to call back to the ASP.Net application passing back this user id to make sure they are still logged in. If this returns true then I need another service all where again I can send in this user id and retrieve back information
about this user like name and roles. I have added a service to my ASP.net application but get the following error when I try to run this test code.
[WebMethod]
public bool testUser(string userId)
{
bool u_status = false;
MembershipUserCollection users;
users = Membership.GetAllUsers();
foreach (System.Web.Security.MembershipUser u in users)
{
if (u.UserName = ...
Go to the complete details ...