I want to check if a string contain following format
[QUOTE]
Test sentence
[/QUOTE]
If that so then I will do this.
string description = dr["description"].ToString();
description = description.Replace("[QUOTE]", "<blockquote>");
description = description.Replace("[/QUOTE]", "</blockquote>");
This is OK.
but how about this one?
[QUOTE=Axio;26]
Test sentence
[/QUOTE]
Also In here I want to add blockquote tag and as well as Want to display this text inside the those tags
"Orginall posted by Axio. Click here"
When you click "Click HEre" you will go to that specific post. So that should be a hyperlink" 26 is the post id
How to do this?