Urls parameters doesn't encoding correctly!
- by Ivan90
I'am using asp.net mvc version 1.0 and I've a problem with some parameter in a url!
My url is look like so(http://localhost:2282/Tags/PostList/c#)
routes.MapRoute(
"TagsRoute",
"Tags/PostList/{tag}",
new { controller="Tags",Action="PostList",tag = "" }
);
In effect the problem is that tag paramter isn't encoding and so simbol # is ignored!
I am using an actionlink but maybe with version 1.0 isn't encoding parameter directly!
<%=Html.ActionLink(itemtags.Tags.TagName,
"PostList","Tags",
new { tag = itemtags.Tags.TagName },
new { style = "color:red;" })%>
With this actionlink only whitespace are encoding correctly, infact asp.net mvc become asp.net%20mvc and it work fine! But c# isn't encoding :(
So I try to use Server.UrlEncode, and in effect it happen some stuff!!!
Infact c# became c%2523 but it isn't correct again because hexadecimal of # is %23!
Have you some solutions???? Route Contraints?
Thanks