I have tried different syntax as belows.
"<img src='../Images/Live news/Actions-arrow-right-icon.png' />" ;<img src="<%= Url.Content("~/Images/Live news/Actions-arrow-right-icon.png") %>"
I want to add image through controller not view so is these syntex are correct?
This is my full code
dt = Users.Get_Livenews(0, true, "GActive");
for (int i = 0; i < dt.Rows.Count; i++)
{
objExercise = new HomeModel();
objExercise.livenews = Convert.ToString(dt.Rows[i]["livenews_headline"].ToString()) + "<img src='../Images/Live news/Actions-arrow-right-icon.png' />" ;
Horizontal.Add(objExercise);
}