摘要:
/* License: http://www.apache.org/licenses/LICENSE-2.0 Home page: http://code.google.com/p/dapper-dot-net/ Note: to build on C# 3.0 + .NET 3.5, include the CSHARP30 compiler symbol (and yes, I know the difference between language and runtime versions; this is a compromise). */using System; using Sy. 阅读全文
posted @ 2013-07-16 11:05
Dana Zhang
阅读(4920)评论(0)推荐(0)
摘要:
1.用户登录先看一下解决方案接下来我们建一个名为Users的Model public class Users { public Users() { } [Key] [DisplayName("编号")] public int Id { get; set; } [DisplayName("用户名")] [Required(ErrorMessage = "用户名不得为空")] [DisplayFormat(Conver... 阅读全文
posted @ 2013-02-22 18:12
Dana Zhang
阅读(1793)评论(0)推荐(2)