Skip to content

Latest commit

 

History

History
executable file
·
31 lines (22 loc) · 939 Bytes

README.markdown

File metadata and controls

executable file
·
31 lines (22 loc) · 939 Bytes

#Intro to FubuMVC

##Bare Bones Directly after creating an empty web project and adding the FubuMVC NuGet package reference.

##Quick Start Read this informative guide: Getting Started

We will start exploring other FubuMVC features from here.

##Routes

  1. Configure routing conventions using Routes DSL
  2. With UrlPattern attribute you can hard code routes with inputs/defaults
  3. Implement your own IUrlPolicy for complete control

##View Location

  1. Spark
  2. How to configure conventions

##Behaviors

  1. Explanation of BehaviorGraph
  2. Ideas for what you could do with behaviors

##Html Conventions Conventions that determine which HTML markup is generated for model properties.

##Model Binding Receiving posted form data automatically wired up to input models.

##Packaging Make your site more pluggable and modular with packages.