Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to display » in ajax.actionlink

in an ajax.actionlink the first argument is the "text to display" which takes a string value, however I'd like to display a » (which displays a nice '>>') however ajax.actionlink is displaying a literal '& raquo;' how can I make it display the symbol?

like image 450
duxfox-- Avatar asked Dec 06 '14 18:12

duxfox--


People also ask

How do I change Display settings?

Change display settingsOpen your phone's Settings app. Tap Display. Tap the setting that you want to change. To see more settings, tap Advanced.

How do I get my full screen back to normal?

Fullscreen mode on a Windows computer To exit the standard view with the address bar, status bar, etc., always showing, press the F11 key on your keyboard to enter fullscreen. Pressing the F11 key again goes back to normal view.

How do I Display my laptop screen?

Connecting your laptop to a monitor is simply a matter of using the appropriate cable; most Windows laptops use HDMI or USB, and MacBooks will use USB or Thunderbolt. After connecting the monitor, choose to duplicate or extend the display in the Display Settings windows on Windows or System Preferences on a Mac.


1 Answers

An » is U+00BB, so the C# escape is \u00BB.

like image 60
GKFX Avatar answered Sep 30 '22 14:09

GKFX