|
by Paul Stovell via Paul Stovell on 5/2/2010 12:27:40 PM
This week I have been working on a routing system for Magellan. The goal was to make it very similar to ASP.NET's style of routing:
Routes.Register("Default",
"{controller}/{action}/{id}", // Path specification
new { controller = "Home", action = "Index", id = "" }, // Defaults
new { id = "^[0-9]+$" } // Constraints
);
Unfortunately, I hadn't counted on Silverlight's security implementation. Since anon
... [ read more ]
|
|