URL-encoded slash in URL - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T12:45:23Zhttp://stackoverflow.com/feeds/question/591694http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/591694/url-encoded-slash-in-url6URL-encoded slash in URLMathias Fritsch2009-02-26T17:58:57Z2009-11-21T19:44:53Z
<p>My Map is:</p>
<pre><code>routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with params
new { controller = "Home", action = "Index", id = "" } // Param defaults
);
</code></pre>
<p>If I use the URL <code>http://localhost:5000/Home/About/100%2f200</code> there is no matching route.
I change the URL to <code>http://localhost:5000/Home/About/100</code> then the route is matched again.</p>
<p>Is there any easy way to work with parameters that contain slashes? Other escaped values (space <code>%20</code>) seem to work.</p>
<p>EDIT:</p>
<p>To encode Base64 works for me. It makes the URL ugly, but that's OK for now.</p>
<pre><code>public class UrlEncoder
{
public string URLDecode(string decode)
{
if (decode == null) return null;
if (decode.StartsWith("="))
{
return FromBase64(decode.TrimStart('='));
}
else
{
return HttpUtility.UrlDecode( decode) ;
}
}
public string UrlEncode(string encode)
{
if (encode == null) return null;
string encoded = HttpUtility.PathEncode(encode);
if (encoded.Replace("%20", "") == encode.Replace(" ", ""))
{
return encoded;
}
else
{
return "=" + ToBase64(encode);
}
}
public string ToBase64(string encode)
{
Byte[] btByteArray = null;
UTF8Encoding encoding = new UTF8Encoding();
btByteArray = encoding.GetBytes(encode);
string sResult = System.Convert.ToBase64String(btByteArray, 0, btByteArray.Length);
sResult = sResult.Replace("+", "-").Replace("/", "_");
return sResult;
}
public string FromBase64(string decode)
{
decode = decode.Replace("-", "+").Replace("_", "/");
UTF8Encoding encoding = new UTF8Encoding();
return encoding.GetString(Convert.FromBase64String(decode));
}
}
</code></pre>
<p>EDIT1:</p>
<p>At the end it turned out that the best way was to save a nicely formated string for each item I need to select. Thats much better because now I only encode values and never decode them. All special characters become "-". A lot of my db-tables now have this additional column "URL". The data is pretty stable, thats why I can go this way. I can even check, if the data in "URL" is unique.</p>
<p>EDIT2:</p>
<p>Also watch out for space character. It looks ok on VS integrated webserver but is different on iis7 <a href="http://stackoverflow.com/questions/1651711/properly-url-encode-space-character">http://stackoverflow.com/questions/1651711/properly-url-encode-space-character</a></p>
http://stackoverflow.com/questions/591694/url-encoded-slash-in-url/591712#5917123Answer by Mehrdad Afshari for URL-encoded slash in URLMehrdad Afshari2009-02-26T18:01:54Z2009-02-26T18:01:54Z<p>If it's only your last parameter, you could do:</p>
<pre><code>routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{*id}", // URL with parameters
new { controller = "Home", action = "Index", id = "" }); // Parameter defaults
</code></pre>
http://stackoverflow.com/questions/591694/url-encoded-slash-in-url/591746#5917462Answer by Tomalak for URL-encoded slash in URLTomalak2009-02-26T18:10:03Z2009-02-26T18:10:03Z<p>Gath Adams recommends Base64 encoding on any parameters that can contain slashes. He also explains the issue in more detail: Blog entry: <a href="http://gathadams.com/2009/01/06/allowing-special-characters-forward-slash-hash-asterisk-etc-in-aspnet-mvc-urls/" rel="nofollow">http://gathadams.com/2009/01/06/allowing-special-characters-forward-slash-hash-asterisk-etc-in-aspnet-mvc-urls/</a></p>
http://stackoverflow.com/questions/591694/url-encoded-slash-in-url/778163#7781630Answer by xraminx for URL-encoded slash in URLxraminx2009-04-22T16:41:48Z2009-04-22T16:41:48Z<p><a href="http://gathadams.com/2009/01/06/allowing-special-characters-forward-slash-hash-asterisk-etc-in-aspnet-mvc-urls/" rel="nofollow">http://gathadams.com/2009/01/06/allowing-special-characters-forward-slash-hash-asterisk-etc-in-aspnet-mvc-urls/</a>
gives a "404 - file not found" error.</p>
http://stackoverflow.com/questions/591694/url-encoded-slash-in-url/1735100#17351001Answer by Jon Galloway for URL-encoded slash in URLJon Galloway2009-11-14T18:15:45Z2009-11-14T18:15:45Z<p>One other option is to use a querystring value. Very lame, but simpler than custom encoding.</p>
<pre><code>http://localhost:5000/Home/About?100%2f200
</code></pre>
http://stackoverflow.com/questions/591694/url-encoded-slash-in-url/1745422#17454222Answer by Andrew Arnott for URL-encoded slash in URLAndrew Arnott2009-11-16T23:00:58Z2009-11-16T23:00:58Z<p>In .NET 4.0 beta 2, the CLR team has offered a workaround.</p>
<p>Add this to your web.config file:</p>
<pre><code><uri>
<schemeSettings>
<add name="http" genericUriParserOptions="DontUnescapePathDotsAndSlashes" />
</schemeSettings>
</uri>
</code></pre>
<p>This causes the Uri class to behave according to the RFC describing URIs, allowing for slashes to be escaped in the path without being unescaped. The CLR team reports they deviate from the spec for security reasons, and setting this in your .config file basically makes you take ownership of the additional security considerations involved in not unescaping the slashes.</p>
http://stackoverflow.com/questions/591694/url-encoded-slash-in-url/1776537#17765370Answer by BillB for URL-encoded slash in URLBillB2009-11-21T19:44:53Z2009-11-21T19:44:53Z<p>That's interesting about .NET 4. Anyway, this link describes RFC 1738 and includes which characters need encoding and which are just "unsafe".
<a href="http://www.blooberry.com/indexdot/html/topics/urlencoding.htm#whatwhy" rel="nofollow">link text</a></p>
<p>If I want an SEO friendly URL, (like when you want to put a forum post subject in the URL), is skip encoding and replace anything that's not A-Z, a-z, 0-9. </p>
<pre><code>public static string CreateSubjectSEO(string str)
{
int ci;
char[] arr = str.ToCharArray();
for (int i = 0; i < arr.Length; i++)
{
ci = Convert.ToInt32(arr[i]);
if (!((ci > 47 && ci < 58) || (ci > 64 && ci < 91) || (ci > 96 && ci < 123)))
{
arr[i] = '-';
}
}
return new string(arr);
}
</code></pre>