Guanghui Wang

A very lame cool person

angular2-chapter08 -- Reusing Components with Content Projection

Reusing Components with Content ProjectionCheck code at: https://github.com/wghglory/angular2-fundamental Content ProjectionNow in event-detail page..


angular2-chapter07 -- Components Communicating

Components Communicating (Parent and Child, Same as chapter02)Check code at: https://github.com/wghglory/angular2-fundamental Pass parent component ..


angular2-chapter06 -- Collecting Data with Forms and Validation

Collecting Data with Forms and ValidationCheck code at: https://github.com/wghglory/angular2-fundamental Using Models for Type Safety1) create event..


angular2-chapter05 -- Routing and Navigation

Routing and NavigationCheck code at: https://github.com/wghglory/angular2-fundamental Adding event-detail page1) shared/event.service.ts 123456789ex..


angular2-chapter04 -- Create Services

Create ServicesCheck code at: https://github.com/wghglory/angular2-fundamental Services and Dependency Injection1) create shared/event.service.ts 12..


angular2-chapter03 -- Exploring the New Template Syntax

Exploring the New Template SyntaxCheck code at: https://github.com/wghglory/angular2-fundamental *ngForevents-list.Component has events array: [even..


angular2-chapter02 -- Creating and Communicating Between Components

Creating and Communicating Between ComponentsCheck code at: https://github.com/wghglory/angular2-fundamental Creating Our First Data-bound Component..


angular2-chapter01 -- systemJS, tsconfig, package.json; first component, module and bootstrap module

Get StartedCheck code at: https://github.com/wghglory/angular2-fundamental Systemjs123456789101112131415161718192021222324(function (global) { ..


Asp.net MVC系列教程9——控制器基类 主要做登录用户、权限认证、日志记录等工作

简述本文转自http://yuangang.cnblogs.com并加以整理。 今天我们来写一个控制器基类 主要做登录用户、权限认证、日志记录等工作 索引Asp.net MVC项目系列教程 项目开始一、在Controllers文件夹下新建一个控制器BaseController用于控制器基类,主要..


Asp.net MVC系列教程8——完善登录功能

简述本文转自http://yuangang.cnblogs.com并加以整理。 今天我们来完善登录功能 索引Asp.net MVC项目系列教程 项目开始一、登录页面增加验证码我们前面做了个简单的登录页,只有用户名和密码,现在我们增加一个验证码。 首先,原作者新建的验证码类verify_code...