By tag: Routing
0
kicks
Fast Dijkstra’s Algorithm Inside MS SQL CLR Stored Procedure
Fast Dijksta's algorithm realization using .NET C#.
It is put into MS SQL CLR SP for easy use right in SQL statements.
It allows to find fastest, shortest paths in a subset of vertices inside DB table.
Great SP for spatial database.
0
kicks
MVC Routes and Magic Strings == “No Good”
I live and breath with ASP.NET MVC, but from the very beginning I’ve been very uncomfortable with the magic string nature of routes, controllers, and actions. I long ago stopped using the various “action” extensions because they are way too prone to fat finger screw ups and moved nearly 100% to usin...
0
kicks
URL Routing with ASP.NET 4 Web Forms (VS 2010 and .NET 4.0 Series)
URL routing was a capability we first introduced with ASP.NET 3.5 SP1, and which is already used within ASP.NET MVC applications to expose clean, SEO-friendly “web 2.0” URLs. URL routing lets you configure an application to accept request URLs that do not map to physical files. Instead, you can use...
0
kicks
Introducing StrongRoutes for ASP.NET MVC « Chris Hampson
Just a little preview of something I am working on that will be available soon..
publicstaticclass SubmissionRoutes
{[RouteOrder(1)]publicstaticreadonly StrongRoute Create
= StrongRoute.Map
0
kicks
ASP.NET MVC Domain Routing
Ever since the release of ASP.NET MVC and its routing engine (System.Web.Routing), Microsoft has been trying to convince us that you have full control over your URL and routing. This is true to a certain extent: as long as it’s related to your application path, everything works out nicely. If you ne...
0
kicks
ASP.NET MVC Subdomain Routing
One of the propagated “great features” for ASP.NET MVC is the full control you have over the routing and url’s of your webapplication. In order to demonstrate this, let’s walk through a sample that specifically handles subdomain routing.
0
kicks
IRouteHandler in ASP.NET MVC
Keyvan explains how to write a RouteHandler that checks for banned IPs and blocks any further processing
0
kicks
ASP.NET Routing and ASP.NET MVC
A detailed examination of how ASP.NET MVC and ASP.NET Routing interact and the consequences of those interactions.
0
kicks
Introduction to the Routing Engine in the ASP.Net Framework
Introduction to the video tutorial on how to use the Routing Engine in the ASP.Net Framework. We will be using the Routing Engine within the MVC framework for this example.
0
kicks
Lowercase Route URL’s in ASP.NET MVC
For anybody interesting in having ruby on rails style routes; or just following a lowercase url pattern (mysite.com/member/profile/goneale) which most web 2.0 sites seem to be adopting check out the article.
0
kicks
ASP.NET Routing documentation at QuickStarts
"ASP.NET routing enables you to use URLs that do not have to map to specific files in a Web site. Because the URL does not have to map to a file, you can use URLs in a Web application that are descriptive of the user's action and therefore more easily understood by users."
0
kicks
Exploring System.Web.Routing
An overview of the new System.Web.Routing namespace that was included in .net 3.5 SP1.
0
kicks
Best possible url format in asp.net mvc on IIS6
A URL format for asp.net mvc which will work in iis 6 also
0
kicks
ASP.NET MVC - Legacy Url Routing
When converting web form applications to MVC, it requires a new Url structure. Learn how to handle legacy Url's within an MVC application by appropriately redirecting them to the correct MVC Url.