show/hide this revision's text 5 added 379 characters in body

--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--

  • String.Format("{0}++{1}++{2}"
  • String.Format("{0}--{1}--{2}") with the values from the previous parts
  • 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 :(

    show/hide this revision's text 4 added 825 characters in body

    In my asp.net mvc application I created the following link:

    http://localhost:2689/en/Formula.mvc/351702++LYS+GRONN+5G+9%252f2++fds

    I get error 400 (bad request).

    I think it blocks at the %25 (forward slash).
    What am I doing wrong?

    --EDIT--
    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 400 If 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 :(

    --EDIT--
    I generated the last part of the URI as follows:

    1. Take the id.toString
    2. Take the HttpUtility.UrlEncode(name)
    3. Take the HttpUtility.UrlEncode(code)
    4. String.Format("{0}++{1}++{2}") with the values from the previous parts
    5. Add it as a parameter to Url.RouteUrl()

    After that my action gets this parameter again, splits it at ++ and HttpUtility.Decode() the values back.

    I do it this way because the two last parameters are optional, but functional parameters. IF they are defined in a previous step, they have to be carried along to the other pages.
    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.

    show/hide this revision's text 3 added 312 characters in body

    In my asp.net mvc application I created the following link:

    http://localhost:2689/en/Formula.mvc/351702++LYS+GRONN+5G+9%252f2++fds

    I get error 400 (bad request).

    I think it blocks at the %25 (forward slash).
    What am I doing wrong?

    --EDIT--
    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 400 If 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 :(

    show/hide this revision's text 2 added 111 characters in body
    show/hide this revision's text 1