Contents 

SQL Data Sets - Online help

Prev Page Next Page

HTML export

Data exported to HTML files will appear in a grid like this:

exporthtml

You can customize the grid by using your own styles in a HTML template file. In the Export dialog, enter the file name of the HTML template file:

exporthtml02

SQL Data Sets will use the template file, and insert the exported grid into the file before the closing body tag. If no HTML template file is provided, SQL Data Sets uses the default template, defined as follows:

<html>
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=utf-8">
<meta name="GENERATOR" content="SQL Data Sets">
<title>Data exported by SQL Data Sets</title>

<style type="text/css">
table {
  border-width: 1px;
  border-spacing: 1px;
  border-style: outset;
  border-color: gray;
  border-collapse: collapse;
  background-color: white;
}
   
 tr.sep {
  background-color: #f5f5f5;
}   

td.header {
  background-color: #dddddd;
  font-weight: bold;      
}

td {
  border-width: 1px;
  padding: 2px 8px 2px 8px;
}

</style>
 
</head>

<body bgcolor="#FFFFFF">
</body>
</html>