Skip to content

Instantly share code, notes, and snippets.

@PaulSorensen
Last active December 29, 2015 17:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PaulSorensen/7706771 to your computer and use it in GitHub Desktop.
Save PaulSorensen/7706771 to your computer and use it in GitHub Desktop.
Check if a member exist in Umbraco egeek.dk
var userName = "myUserName";
var memberExist = false;
if(Membership.GetUser(userName) != null)
{
memberExist = true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment