Hi
i created a list and a column name description and selected type of column multi line text box with rich text box option,actually client wanted to insert picture ,apply different styles to the description he enters so that's why we selected this type of column.
Now whatever client enters in the description column from the list we have to show that description in the visual web part.
I have to use the description in the anchor tag as belowd the following
<div><a href="#" class="link" title='
<%# Eval(Description) %>'
></a></div>
but doing this i am having issue mentioned below.
For example client entered bulleted list ,images ,and all other different styles on text applied so when i tried above code i am getting pure html tags for images,bulleted lists tage like <ul><li> etc etc
Please suggest how i get what client entered not the html of the tags.