01 2014 档案
Pro Aspnet MVC 4读书笔记(5) - Essential Tools for MVC
摘要:Listing 6-1. The Product Model Classusing System;using System.Collections.Generic;using System.Linq;using System.Web;namespace EssentialTools.Models{ public class Product { public int ProductId { get; set; } public string Name { get; set; } public string Description { get;... 阅读全文
posted @ 2014-01-22 14:29 逝者如斯(乎) 阅读(179) 评论(0) 推荐(0)
Pro Aspnet MVC 4读书笔记(4) - Working with Razor
摘要:Listing 5-1. Creating a Simple Domain Model Classusing System;using System.Collections.Generic;using System.Linq;using System.Web;namespace Razor.Models{ public class Product { public int ProductId { get; set; } public string Name { get; set; } public string Description { ... 阅读全文
posted @ 2014-01-22 10:26 逝者如斯(乎) 阅读(203) 评论(0) 推荐(0)
Pro Aspnet MVC 4读书笔记(3) - Essential Language Features
摘要: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 逝者如斯(乎) 阅读(192) 评论(0) 推荐(0)
Pro Aspnet MVC 4读书笔记(2) - The MVC Pattern
摘要: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 逝者如斯(乎) 阅读(189) 评论(0) 推荐(0)
Pro Aspnet MVC 4读书笔记(1) - Your First MVC Application
摘要:Listing 2-1. The default contents of the HomeController classusing System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Mvc;namespace PartyInvites.Controllers{ public class HomeController : Controller { public ActionResult Index() { ... 阅读全文
posted @ 2014-01-20 14:50 逝者如斯(乎) 阅读(132) 评论(0) 推荐(0)
好书推荐
摘要:超经典:为何要学编程?如何学编程?用什么语言最好?有什么好书?---------------------------------------------===============================================一、为何要学编程?每个人的动机不一样。大致有: 1、为了找个好工作;或为了有更好的机会和更好的发展。 2、看到别人超厉害,所以也想学。 3、实际工作中很多场合需要。4、从小就立志做个程序员,做软件工程师。5、振兴中国的软件事业。。。。。。。================================================二、如何学编程?1 阅读全文
posted @ 2014-01-15 15:20 逝者如斯(乎) 阅读(279) 评论(0) 推荐(0)