vote up 0 vote down star

On a postback I'm setting the value of one of my textboxes to a grave accent. This is causing a bunch of the HTML that follows to be shown in the textbox instead of the grave accent. What am I doing wrong?

flag

75% accept rate

2 Answers

vote up 0 vote down

Are you using the HTML entity number or name instead of the actual grave accent character? http://www.w3schools.com/tags/ref_entities.asp

link|flag
` is not on that page, but I've tried a few different encodings but it seems to go straight through as the encoding. – Ryan Aug 4 at 20:46
vote up 0 vote down

Use ` for your grave accent. That should solve your problem.

link|flag
If I do string.Replace("`"," `") it will just output ` to the textbox – Ryan Aug 4 at 20:44

Your Answer

Get an OpenID
or

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