验证asp.net中.cs文件中的方法

时间:2014-05-20 10:11:33

标签: c# asp.net validation asp.net-mvc-4 methods

...净 我在给定链接的教程的帮助下制作了一个简单的MVC项目:

http://www.codeproject.com/Articles/486161/Creating-a-simple-application-using-MVC

我在这个特定阶段遇到错误。

现在让我们在字段上应用验证:

Error   2   The type or namespace name 'DisplayName' could not be found (are you missing a using directive or an assembly reference?)   
C:\Users\sword\Documents\Visual Studio 2012\Projects\MyCalculatorSrevice\MyMvc1\MyMvc1\Models\UserModels.cs

我搜索了它,但找不到任何可以删除此错误的内容。

帮帮我

thanx

2 个答案:

答案 0 :(得分:1)

确保:

  1. 您已引用System.ComponentModel程序集
  2. 您已在UserModel.cs文件中按using System.ComponentModel;导入注释。
  3. 希望它能帮到你,

答案 1 :(得分:0)

您实际上缺少对DataAnnotations的引用。尝试在引用中添加以下行,它将开始工作。

using System.ComponentModel.DataAnnotations;