How to remove mysterious border in string builder table?

250 Views Asked by At

I have some code that generates a PDF. For some reason there is a black bordered cell showing up behind the image on this line:

sb.AppendLine("<tr><td>" + "~/images/Products/" + imageName + "</td><td>~/images/spacer.gif</td></tr>");

I have tried setting the border to 0 on the table, but I'm getting an error ") expected", or the html just breaks.

How can I ensure that there is no border shown around this cell?

Here are the two parts involved:

//add images
        str = new StringBuilder();
        str.Append("<table>");

        if (HasRelatedImages(ContentId, ref str))
        {
            obj = new List<FieldIdentifier>();
            obj.Add(new FieldIdentifier() { LabelName = "Images", Value = "" });
            index = index + 1;
            rows.Add(index, obj);

            obj = new List<FieldIdentifier>();
            obj.Add(new FieldIdentifier() { LabelName = "NewTable_Data", Value = str.Append("</table>").ToString() });
            index = index + 1;
            rows.Add(index, obj);
        }
        //end images

and

private Boolean HasRelatedImages(long productId, ref StringBuilder sb)
{
    var imagemetadata = new List<ImageMetadata>();
    int i = 0;

    try
    {
        Database db = DatabaseFactory.CreateDatabase("Site.DbConnection");
        DbCommand dbCommand = db.GetStoredProcCommand("[spSelectImages]");
        db.AddInParameter(dbCommand, "@ContentID", DbType.Int64, productId);
        IDataReader dr = db.ExecuteReader(dbCommand);

        while (dr.Read())
        {
            string imageName = GetNullableDBStringValue(dr["ImageName"]);
            string altText = GetNullableDBStringValue(dr["ALTText"]);
            altText = HttpUtility.HtmlEncode(altText);

            if (!string.IsNullOrEmpty(imageName) && System.IO.File.Exists(System.Web.HttpContext.Current.Server.MapPath("~/images/Products/" + imageName)))
            {
                i++;

                sb.AppendLine("<tr><td>" + i.ToString() + "</td><td>" + (string.IsNullOrEmpty(altText) ? " " : altText) + "</td></tr>");
                sb.AppendLine("<tr><td>" + "~/images/Products/" + imageName + "</td><td>~/images/spacer.gif</td></tr>");
            }

        }
        dr.Close();
    }
    catch
    {
    }


    if (i > 0) return true;

    return false;
}
1

There are 1 best solutions below

0
On BEST ANSWER

There was other code involved adding the border. No change was needed to this piece.