Вы пытались установить AuthCookie?
if (Membership.ValidateUser(txtBxusername, txtBxpassword))
{
FormsAuthentication.SetAuthCookie(strUsername, true);
bool isAuth = User.Identity.IsAuthenticated;
FormsAuthentication.RedirectFromLoginPage(userName, chkBxRememberMe.Checked);
}
Теперь вы сможете использовать в другом месте вашего кода:
string userName = User.Identity.Name;