Okay, so maybe this is a no no in the MVC pattern in which case, that's the answer I'm looking for. However, let's say I have some content html in a database and I want to pass it through to the view. I am assuming I could use a ViewData property to pass this through to the page. What sort of massaging do I need to do to the string to get something like <h1>Hello World</h1> to show up as 'Hello World' instead of '<h1>Hello World</h1>'.
|
1
|
|
||
|
|
|
Nothing, just do Note: Only do this if you are absolutely sure you trust the data in the database! |
||||
|
|
|
You'd need to strip out the HTML before you put the string into the ViewData. EDIT: When you print the ViewData directly to the page, it shouldn't escape the HTML markup.
That's C#, but it's very similar in VB.NET. |
|||
|
