What's the syntax for displaying this? My program will always render « literally in the pagination helper I am creating, and since the switch to MVC3 there seems to be no way to even hack it with Eval( string.FromCharCode )

link|improve this question

62% accept rate
feedback

2 Answers

up vote 1 down vote accepted

Just use the corresponding UTF-8 character and the HTML helper will take care of the encoding it:

@Html.RouteLink("«", new { action = "navigate", page = 1 })
@Html.RouteLink("»", new { action = "navigate", page = 3 })
link|improve this answer
feedback

As long as you are using UTF-8 as your character-set then showing the « directly (without encoding it) is perfectly valid XHTML.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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