Skip to content

Commit

Permalink
Merge pull request twilson63#13 from adebisi-fa/30f04d76208c2d54749a0…
Browse files Browse the repository at this point in the history
…61722af87038583702d

Release v0.2.0 and more examples
  • Loading branch information
Tom Wilson committed Mar 9, 2013
2 parents dbd9d91 + 30f04d7 commit f7fd052
Show file tree
Hide file tree
Showing 18 changed files with 19,650 additions and 33 deletions.
6 changes: 6 additions & 0 deletions examples/aspnet.mvc/App_Start/RouteConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

routes.MapRoute(
name: "Upload Complete Form",
url: "upload-full-form",
defaults: new { controller = "Upload", action = "FullForm", id = UrlParameter.Optional }
);

routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
Expand Down
Loading

0 comments on commit f7fd052

Please sign in to comment.