67
votes
15answers
5k views
What algorithms compute directions from point A to point B on a map?
How do map providers (such as Google or Yahoo! Maps) suggest directions?
I mean, they probably have real-world data in some form, certainly including distances but also perhaps things like driving …
21
votes
2answers
1k views
ASP.NET MVC Routing Via Method Attributes
In the StackOverflow Podcast #54, Jeff mentions they register their URL routes in the StackOverflow codebase via an attribute above the method that handles the route. Sounds like a good concept (with …
17
votes
7answers
2k views
IIS URL Rewriting vs URL Routing
I was planning to use url routing for a Web Forms application. But, after reading some posts, I am not sure if it is an easy approach.
Is it better to use the URL Rewrite module for web forms? But, …
14
votes
4answers
1k views
Is it possible to make an ASP.NET MVC route based on a subdomain?
Is it possible to have an ASP.NET MVC route that uses subdomain information to determine its route? For example:
user1.domain.com goes to one place
user2.domain.com goes to another?
Or, can I …
10
votes
2answers
446 views
How do I route images using ASP.Net MVC routing?
I upgraded my site to use ASP.Net MVC from traditional ASP.Net webforms. I'm using the MVC routing to redirect requests for old .aspx pages to their new Controller/Action equivalent:
…
9
votes
4answers
2k views
Creating routes with an optional path prefix
How can I go about making my routes recognise an optional prefix parameter as follows:
/*lang/controller/id
In that the lang part is optional, and has a default value if it's not specified in the …
9
votes
6answers
1k views
ASP.NET MVC URL generation performance
A little benchmark with ASP.NET MVC. Viewpage code:
public string Bechmark(Func<string> url)
{
var s = new Stopwatch();
var n = 1000;
s.Reset();
…
8
votes
4answers
3k views
ASP.NET MVC QueryString defaults overriding supplied values?
Using ASP.NET MVC Preview 5 (though this has also been tried with the Beta), it appears that querystring defaults in a route override the value that is passed in on the query string. A repro is to …
8
votes
3answers
3k views
How to redirect to a dynamic login URL in ASP.NET MVC
I'm creating a multi-tenancy web site which hosts pages for clients. The first segment of the URL will be a string which identifies the client, defined in Global.asax using the following URL routing …
8
votes
10answers
3k views
HttpContext.Current.Session is null when routing requests
Without routing, HttpContext.Current.Session is there so I know that the StateServer is working. When I route my requests, HttpContext.Current.Session is null in the routed page. I am using .NET 3.5 …
7
votes
3answers
249 views
How do I set up a route for the home page of an ASP.NET MVC site?
I'm working with an ASP.NET MVC site which will use a CMS controller for all pages of the site except for the home page. Here's the idea:
Home controller:
www.site.com
www.site.com/default.aspx
…
7
votes
3answers
1k views
MVC.Net Routing
Here is my scenario. For the example lets say that I need to return a list of cars based on a search criteria. I would like to have a single View to display the results since the output will be the …
7
votes
5answers
325 views
Semantic urls with dots in .net
I'm trying to make semantic urls for search pages, but if someone use a search finished in dot, the .net engine return a 404.
The request don't even get to the routing engine, so i think its …
7
votes
1answer
1k views
Using Linux, how to specify which ethernet interface data is transmitted on
I'm working on a Linux based server system in which there are two network interfaces, both on the same subnet (for now, lets just say they are 172.17.32.10 & 172.17.32.11). When I send data to a …
6
votes
7answers
399 views
How do I create userfriendly urls like stackoverflow?
I want to create a similar type of url as stack overflow does when a question is created.
Example:
http://stackoverflow.com/questions/1149454/non-ajax-get-post-using-jquery-plugin
I am particularly …
