Stories recently tagged with 'routing'

MVC Routes and Magic Strings == “No Good”(www.isi-net.com)

submitted by RMuthRMuth(80) 1 year, 11 months ago

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 using route extensions and putting my routes names into constants so as not to have any chance of fat finger issues, but recently, after reviewing the source code for MVC2, specifically the “LabelFor” extension, I realized there was even another way to limit fat finger screw ups via routing extensions and lambdas. read more...

add a comment |category: |Views: 25

tags: another

URL Routing with ASP.NET 4 Web Forms (VS 2010 and .NET 4.0 Series) (weblogs.asp.net)

submitted by crpietschmanncrpietschmann(11.3k) 2 years, 3 months ago

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 routing to define URLs that are semantically meaningful to users and that can help with search-engine optimization (SEO). With ASP.NET 4.0, URLs like above can now be mapped to both ASP.NET MVC Controller classes, as well as ASP.NET Web Forms based pages. read more...

add a comment |category: |Views: 46

tags: another

Introducing StrongRoutes for ASP.NET MVC « Chris Hampson(bleevo.com)

submitted by gonealegoneale(1055) 2 years, 6 months ago

Just a little preview of something I am working on that will be available soon.. publicstaticclass SubmissionRoutes {[RouteOrder(1)]publicstaticreadonly StrongRoute Create = StrongRoute.Map read more...

add a comment |category: |Views: 21

tags: another

ASP.NET MVC Domain Routing(blog.maartenballiauw.be)

submitted by maartenbamaartenba(5845) 2 years, 8 months ago

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 need to take care of data tokens in your (sub)domain, you’re screwed by default. read more...

add a comment |category: |Views: 409

tags: another

ASP.NET MVC Subdomain Routing(blogs.securancy.com)

submitted by SickDotNetSickDotNet(200) 2 years, 8 months ago

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. read more...

add a comment |category: |Views: 1087

tags: another

IRouteHandler in ASP.NET MVC(nayyeri.net)

submitted by simonechsimonech(10.1k) 2 years, 9 months ago

Keyvan explains how to write a RouteHandler that checks for banned IPs and blocks any further processing read more...

add a comment |category: |Views: 70

tags: another

ASP.NET Routing and ASP.NET MVC(blogs.teamb.com)

submitted by CraigStuntzCraigStuntz(438) 2 years, 10 months ago

A detailed examination of how ASP.NET MVC and ASP.NET Routing interact and the consequences of those interactions. read more...

add a comment |category: |Views: 20

tags: another

Introduction to the Routing Engine in the ASP.Net Framework(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 2 years, 11 months ago

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. read more...

1 comment |category: |Views: 220

tags: another

Lowercase Route URL’s in ASP.NET MVC(goneale.wordpress.com)

submitted by gonealegoneale(1055) 3 years ago

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. read more...

add a comment |category: |Views: 184

tags: another

Exploring System.Web.Routing(codethinked.com)

submitted by justin_etheredgejustin_etheredge(8539) 3 years, 5 months ago

An overview of the new System.Web.Routing namespace that was included in .net 3.5 SP1. read more...

add a comment |category: |Views: 783

tags: another

Best possible url format in asp.net mvc on IIS6(nirandas.com)

submitted by redcapredcap(420) 3 years, 5 months ago

A URL format for asp.net mvc which will work in iis 6 also read more...

add a comment |category: |Views: 38

tags: another

ASP.NET Routing documentation at QuickStarts(quickstarts.asp.net)

submitted by JemmJemm(9604) 3 years, 5 months ago

"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." read more...

1 comment |category: |Views: 280

tags: another

ASP.NET MVC - Legacy Url Routing(blog.eworldui.net)

submitted by mhawleymhawley(1125) 3 years, 9 months ago

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. read more...

add a comment |category: |Views: 131

tags: another