I had one register form , and I used to use it with my last asp.net mvc 2 project. Now I copied that register form into my asp.net mvc 3.
These are what I have copied from my last project :
- All jquery validation + Microsoft mvc ajax files
- Include all the file in source code
- Using
Html.ValidationMessage
in my view. - Using
[Required(ErrorMessage = "*")]
in my model
But it still have no the validation script in my view.
What did I miss?