in ajax.actionlink first argument is "text to display" , which takes a string value, however I would like to display » (which displays a good 'β'), however ajax.actionlink displays the literal '& RAQUO; "how can I display a character?
ajax.actionlink
"text to display"
»
An » is U+00BB , so the C # escape is \u00BB .
U+00BB
\u00BB
You can use it directly, the HTML helper will automatically encode it: -
@Ajax.ActionLink("Β« Previous","Test",new AjaxOptions { OnSuccess = "Test" }) @Ajax.ActionLink("Next Β»","Test",new AjaxOptions { OnSuccess = "Test" })
Source: https://habr.com/ru/post/1208502/More articles:Unable Python error EC2: ValueError: JSON object cannot be decoded - pythoniOS: notification actions - remove βopenβ in options menu - iosHow to change paste-sort function code to tail recursive - scalaBest practice to have the same look and store multiple times in ExtJS 4 - parametersHow to reject UIAlertController without any action in SWIFT? - iosAre initComponent functions stored in memory after component destruction, or are these storages collected? - javascriptSave flash games PHP / MySQL Score - phpA fragment of the dialogue, the fill screen - androidWhat are the benefits of using autoencoder to create a filter set over the predefined gabor filter set relative to CNN? - artificial-intelligenceSFINAE std :: isfinite and similar functions using std :: is_arithmetic - c ++All Articles