I'm making my first asp.net mvc application Forum system. I want before every thread to show picture that shows is there new post or not. Like other forums, if there is something new from last login to show one picture and if there is nothing new show other picture. I am using asp.net identity 2.0.
I am thinking to make partial view and to invoke it where I need it. But how to show picture, depending on every user, I was thinking when user log in to be invoked method that checks every thread if there is something new after last login. Where to put this logic in the mvc project, or in the db project and to store for every user last login date, and to call this method. What is the right way?