Im Projekt lautet der Code zum Speichern einer Tabelle auf der Seite in Excel wie folgt:
HTML-Code
<html>
<Kopf>
<title>Tabelle in HTML in Excel speichern</title>
</head>
<Körper>
<h1>Inhalte in Excel speichern</h1>
<table id='content'>
<tr><td>Spalte 1</td><td>Spalte 2</td></tr>
<tr><td>Spalte 1</td><td>Spalte 2</td></tr>
<tr><td>Spalte 1</td><td>Spalte 2</td></tr>
<tr><td>Spalte 1</td><td>Spalte 2</td></tr>
<tr><td>Spalte 1</td><td>Spalte 2</td></tr>
<tr><td>Spalte 1</td><td>Spalte 2</td></tr>
<tr><td>Spalte 1</td><td>Spalte 2</td></tr>
</table>
<a href="javascript:downloadfile('content')">Datei speichern</a>
<script language="javascript">
Funktion downloadfile(id)
{
window.document.write(document.getElementById(id).outerHTML);
window.document.execCommand("Speichern unter",false,"C:\download.xsl");
History.go(-1);
}
</script>
</body>
</html>