I've seen that IIS has a problem with letting colons into URLs. I also saw the suggestions others offered here.

With the site I'm working on, I want to be able to pass titles of movies, books, etc., into my URL, colon included, like this:

mysite.com/Movie/Bob:The Return

This would be consumed by my MovieController, for example, as a string and used further down the line.

I realize that a colon is not ideal. Does anyone have any other suggestions? As poor as it currently is, I'm doing a find-and-replace from all colons (:) to another character, then a backwards replace when I want to consume it on the Controller end.

link|improve this question

Why would you use a colon? Did you find this works on servers other than IIS? I wish colon wasn't even allowed for specifying port numbers because it would make parsing the protocol much simpler. Use a hyphen, underscore, or other character. Or make it another level like mysite.com/Movie/Bob/The+Return. – Jonathan Wood Jan 14 '11 at 18:58
The issue with doing mysite.com/Movie/Bob/The+Return would be figuring out how to take a movie title ("Bob:The Return") and know "Hey, there was a colon here in the title...I need to put that back together properly." – Joe Morgan Jan 14 '11 at 22:33
Maybe I should pass in a class that has both the title and the slug in it instead of just the movie title as a string? – Joe Morgan Jan 14 '11 at 22:34
feedback

5 Answers

up vote 3 down vote accepted

Consider URL encoding and decoding your movie titles.

You'd end up with foo.com/bar/Bob%58The%20Return

As an alternative, consider leveraging an HTML helper to remove URL unfriendly characters in URLs (method is URLFriendly()). The SEO benefits between a colon and a placeholder (e.g. a dash) would likely be negligable.

link|improve this answer
3  
I tried doing encoding/decoding. IIS still seemed to see that and say, "Hey, that's still a colon. Throw a 400 error!" – Joe Morgan Jan 14 '11 at 22:35
feedback

One of the biggest worries with your approach is that the movie name isn't always going to be unique (e.g. "The Italian Job"). Also what about other ilegal characters (e.g. brackets etc).

It might be a good idea to use an id number in the url to locate the movie in your database. You could still include a url friendly copy of movie name in your url, but you wouldn't need to worry about getting back to the original title with all the illegal characters in it.

A good example is the url to this page. You can see that removing the title of the page still works:

ASP.NET MVC Colon in URL

ASP.NET MVC Colon in URL

link|improve this answer
This is an interesting idea. I'll have to look into this. – Joe Morgan Jan 14 '11 at 22:38
feedback

Colon is a reserved and invalid character in an URI according to the RFC 3986. So don't do something that violates the specification. You need to either URL encode it or use another character. And here's a nice blog post you might take a look at.

link|improve this answer
Where does it say that it's invalid? Am I interpreting this incorrectly? pchar = unreserved / pct-encoded / sub-delims / ":" / "@" – darkangel May 21 at 9:08
feedback

The simplest way is to use System.Web.HttpUtility.UrlEncode() when building the url and System.Web.HttpUtility.UrlDecode when interpreting the results coming back. You would also have problems with the space character if you don't encode the value first.

link|improve this answer
feedback

If we are not supposed to "VIOLATE THE SPECIFICATION" how come Wikipedia does it?

http://www.mediawiki.org/wiki/API:Main_page

I am also looking for an answer if any one has it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.