I've been searching the internet with the string.format for my code and it seems that I can't find the right one that looks like on my code.
DataColumn dtCol;
dtCol = new DataColumn("ImagePath", System.Type.GetType("System.String"));
dtImages.Columns.Add(dtCol);
dtImages.Columns["ImagePath"].Expression = string.Format("<a href=\"'{0}'+ImageFilename\">View Image</a>", ImageDownloadPath);
(the ImageFilename is a column on my database table) the above code always throws an error of "Syntax error: Missing operand before '<' operator"
How do I do this properly?