The below string is exactly how it is stored in the database and when i project the this data to web page the <i>'s are changing to (<i> these characters and in again the browser is converting these (<i>characters to <i></i> anyone has any clue, i think the data is converted from the database like this. "<i>Science and Technology on Show</i> aims to enhance the teaching of science and technology."
Use code tags in your post so we can see what you mean ... also, how are they being entered in the database? Please show that code.
I think you're looking for Replace(): <% Replace(string, look for this, and replace with this) %> Code (markup): You might want this: <% String = Replace(String, ">", ">") String = Replace(String, "<", "<") Response.Write(String) %> Code (markup):