これがC#コード内の私のhtmlコードです
tosend = "<p><tr><th>The directory searched: " + path + " </th><th> between the dates " + fdate + " and " + ldate + "</th></tr> <br> </p> <tr><th>File Name</th> <th>File Date</th> <th>File Hash</th> <th>Beamer Date</th> <th>Beamer Hash</th> <th>Status</th></tr>";
for (int i = 0; i < thexfiles.Length; i++)
{
tosend = tosend + "<tr><td>" + thexfiles[i] + "</td><td>" + filedate[i] + "</td><td>" + hashList[i] + "</td><td>" + thexdates[i] + "</td><td>" + beamerHash[i] + "</td><td>" +status[i] + "</td></tr>";
}
tosend = "<html><table border="+1+">" + tosend + "</table></html>";
これがどのように見えるかのリンクです:ここをクリック
私がやりたいことは、
- 他の行と同じサイズになるように最初の行を拡張したいのですが、
- ご覧のとおり、日付行とステータス行の高さが大きすぎるので、expand のように 1 行に表示したいと考えています。
これだけで、これまで通常のhtmlの幅高さなどを試してきましたが、表記が間違っているのかうまくいきませんでした。