我在 C#.Net(桌面应用程序)中创建了 GridView。现在我想通过邮件将此 Gridview 发送给用户。
请告诉我如何实现这一点(通过将网格导出为 HTML 或其他方式??)。
我在下面的 HTML 中尝试过,但遇到了很多格式问题。
dataGridView1.Rows[i].Cells[1].Value = data1.ToString();
dataGridView1.Rows[i].Cells[3].Value = data2.ToString();
mailBody.AppendFormat("<td>{0}</td>",data1.ToString() );
mailBody.AppendFormat("<td>{0}</td>", data2.ToString());