I'm new to ASP.NET MVC so bear with me.
I have a model "profile" which holds date registered, username and about me. When someone edits their profile (Which I made using entity framework and scaffoling) I don't want them to be able to update the register date, so I took it out of the view, but now when I save changes, it says it can't save a null date.
How do I tell ASP.NET MVC that I don't want the user to be able to update that field?
Thanks in advance.