我需要任何编码员的帮助......
目前,代码读取 CSV 文件,然后使用 Powershell 将其输出到 html 文件。而且我必须使用 Powershell,因为此代码(此处未显示)还有其他使用 Powershell 的位。
如何根据单元格的值为表格上的行着色?
当前的代码如下所示。
$datagridView1.DataSource | Export-Csv c:\tmp\test.csv
#HTML OUTPUT
$head= @"
<style>
BODY{background-color:white;}
TABLE{border-width: 3px;border-style: solid; border-color:white;border-collapse:
collapse;}
TH{border-width: 3px;padding: 2px;border-style: solid;border-color: white;background- color:yellow}
</style>
<script type="text/javascript">
var allText =[];
var allTextLines = [];
var Lines = [];
var txtFile = new XMLHttpRequest();
txtFile.open("GET", "file://c:/tmp/test.csv", true);
txtFile.onreadystatechange = function()
{
allText = txtFile.responseText;
allTextLines = allText.split(/\r\n|\n/);
};
document.write(allTextLines);<br>
document.write(allText);<br>
document.write(txtFile);<br>
</script>
"@
$datagridView1.DataSource | convertto-html -head $head –body "<H2>Query</H2>" | Out-File C:\tmp\app.html
app.html 文件似乎还创建了以下四列,它们不在 CSV 文件中(RowError、RowState、Table、ItemArray、HasErrors),我无法弄清楚它的来源。
任何帮助将不胜感激