Hi,
when I authenticated user if (HttpContext.Current.User.Identity.IsAuthenticated)
{
//my code
}
working but if authenticate user which has Roles not working...
Not use my code.
I tried to use:
if (HttpContext.Current.User.Identity.IsAuthenticated || (HttpContext.Current.User.IsInRole("AdminIsUser")))
but still not working.
please help
Go to the complete details ...