--EDIT--
It also looks like HttpUtility.UrlEncode() and Url.Encode() return different results :S
If -EDIT 3--
I don't tried not encoding anything at all but rather rely on the default encoding of Url.RouteUrl().
It seems that this doesn't encode the "/", it acts as a separator=>no luck there/" for some reason.
If I encode it with Url.Encode() I end up with %2F => Code 400If I encode it with HttpUtility.UrlEncode() myself first, I end up with %25 => code 400
Because 400 doesn't even let it through to asp.net-mvc, the route debugger is of no use :(doubel encoded %252f. This gives me a bas request for some reason..Why?!
--EDIT---EDIT 2--
After that my action gets this parameter again, splits it at ++ -- and HttpUtility.Decode() the values back.
Less abstract: A color can have multiple names, but if a user selected it by a particular name, it should be kept throughout all the other pages.--EDIT 1--
It also looks like HttpUtility.UrlEncode() and Url.Encode() return different results :S
If I don't encode the "/", it acts as a separator=>no luck there.If I encode it with Url.Encode() I end up with %2F => Code 400If I encode it with HttpUtility.UrlEncode() I end up with %25 => code 400
Because 400 doesn't even let it through to asp.net-mvc, the route debugger is of no use :(
