hi,
I am using the asp.net membership.
On my site I have a Profile.aspx page.
In the code behind of this page, i get the logged in UserId (Guid) and pass
this to a method in my DAL. GetUserByUserId()
In my database I have a Table called Member which the method gets the data from
and displays details on the page about the user.
What I want to happen is when they have logged in and are diverted to Profile.aspx,
the page URL shows www.MyWebSite/Profile/UsersName
for example
www.MyWebsite/Profile/JohnSmith.aspx
is this possible. In my Member table I have FirstName and LastName columns or do I get the
name from the membership table.
even better would be they ...
Go to the complete details ...