Hi,

Im creating a few web services for use with a mobile application. My current site uses asp .net membership and one of the web services will validate username and password.

In the web service I get passed uname and pword and just use

Code:
        If Membership.ValidateUser(username, password) = True Then
            Return "True"
        Else
            Return "false"
        End If
Is there a similar way to get the userid without logging the user on or do I need to create a Stored procedure?

Thanks Dave