if u go to omegalove.com and type in username macupryk and password cupryk
it will take u to the profile page. I was wondering because I put the login view to not visible. How can I
setup the user's name and things.
For example
Logout Bookmarks -->Settings
if
(!Page.IsPostBack)
{
// Display the number of users currently online
NumOnline.Text =
Membership
.GetNumberOfUsersOnline().ToString();
}
if
(!Page.User.Identity.IsAuthenticated)
{
// The FindControl method will pass back an instance of Control class
Control masterPageControl = Page.Master.FindControl("LoginView1"
);
LoginView masterPageLoginView = masterPageControl as LoginView
;
masterPageLoginView.Visible =
false
;