I am using a string builder to set up an html table row by row so that it can be emailed. I currently gather my information from the database using a data reader and while dataReader.read, I use stringbuilder.Append to add each cell value to the table.
The issue is that after about 200 rows, the html breaks and displays a cell value above the table in the email. I have tried changing the cell padding, but this was not successful. Any suggestions or ideas on why my html table is breaking would be greatly appreciated.
Thanks in advance, and I apologize for the lack of detail in my question.