vote up 1 vote down star

When using ActionLink to render data from database which has HTML tags

(ie <p>)

incorporated in it, ActionLink escapes the tags. What is the best way to handle this?

flag

72% accept rate

2 Answers

vote up 1 vote down check

In valid (X)HTML, paragraph tags are disallowed inside of anchor tags, so I wouldn't expect the framework to allow it.

link|flag
actually, you are right, this is where my problem is. Would i need to remove all html before passing string to Actionlink? – zsharp Dec 30 at 4:19
That's what I would do – John Sheehan Dec 30 at 5:04
vote up 1 vote down

I don't know that you can turn off the XSS protection in the helper methods, but you can always build your own helper methods. Just make an extension method that hangs off the Html class.

If you just want to render some HTML from the database, you can use <%= ViewData["MyContent"] %> if you're controller loads the data into the MyContent view data. Just know that you have to clean this HTML yourself.

link|flag

Your Answer

Get an OpenID
or

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