vote up 0 vote down star

When using Html.ActionLink passing a string containing the # char renders it like it is but if you UrlEncode it renders as %2523.

I believe it's a bug. MVC Beta Release.

Is it really a bug?

http://example.com/test# is rendered as

http://examplee.com/test%2523 instead of

http://examplee.com/test%2523

flag
happens to me as well... – Bruno Nov 26 '08 at 12:29
Could you be more detailed? It looks like your expected and result are the same string. What are the parameters you're calling ActionLink with? – Haacked Nov 27 '08 at 6:19

2 Answers

vote up 2 vote down

Not a bug :) You don't want to UrlEncode actual urls - UrlEncode helps you encode text within urls that might conflict with the URI control characters. In the same way, you wouldn't pass actual HTML into HtmlEncode unless you wanted to show your users the HTML itself.

link|flag
vote up 0 vote down

Are you passing in # as part of parameters of ActionLink? If so, you should just append it like this: Html.ActionLink("test") + "#"

link|flag

Your Answer

Get an OpenID
or

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