2014年1月21日
摘要: Listing 4-1. The Initial Content of the Home Controllerusing System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Mvc;namespace LanguageFeatures.Controllers{ public class HomeController : Controller { public string Index() { retur... 阅读全文
posted @ 2014-01-21 11:30 逝者如斯(乎) 阅读(189) 评论(0) 推荐(0)
摘要: Listing 3-1. The C# Auction Domain Modelusing System;using System.Collections.Generic;using System.Linq;using System.Web;namespace MvcPattern.Models{ public class Member { public string LoginName { get; set; } // The unique key public int ReputationPoints { get; set; } } pu... 阅读全文
posted @ 2014-01-21 08:22 逝者如斯(乎) 阅读(186) 评论(0) 推荐(0)