Get the FBA User Logged
private static string GetMyFbaUserProperty
{
get
{
string fbaUser = HttpContext.Current.User.Identity.Name;
int lastIndex = fbaUser.LastIndexOf("|");
return fbaUser = fbaUser.Substring(lastIndex + 1,
(fbaUser.Length - lastIndex - 1));
}
}