TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Shibly Sadik
NA
167
139k
Show personal profile in MVC
Jul 13 2015 6:28 AM
Here is the model class that represent the properties of a user profile.
public class Profile
{
public int ProfileId { get; set; }
public string UserName { get; set; }
public string Age { get; set; }
public string Gender { get; set; }
public string Password { get; set; }
public string Email { get; set; }
}
When users create their profile their profiles are saved in the database..
now,when they log in using their email and password I want to show them their personal profile only.How can I do this?
I am a beginner in mvc..help me explaining detail please..
Reply
Answers (
1
)
how to use group functionality in listview without using db?
datalistView