我创建了一个动态表,并将数据集值绑定到这个动态表。我希望将此动态表导出到 Excel 。这是代码
string table = string.Empty;
table += "<table cellpadding='0' cellspacing='0' width='100%'
style='border-left:solid 1px #bdbdbd;background-color:#ffffff;height:30px;'>";
table += "<tr><td colspan='2' class='cont' style='width: 50%; font-weight: bold;
padding-left: 10px; border-right:solid 1px #bdbdbd; border-bottom:solid 1px
#bdbdbd;background-color:#ffffff;height:30px; '>Mentor Name : " +
dss.Tables[0].Rows[j]["FirstName"].ToString() + "</td></tr></table>";
dv1.InnerHtml = table;
这dv1
是我将表连接到 div 的 div 的 id