I have a page that I'm displaying in Excel, using
<%response.ContentType = "application/vnd.ms-excel" %>.
I need to know how to format the spreadsheet, to show gridlines, specify word-wrap on columns and the like.
Rather than post a lot of code, I'll use this example from W3schools (
<%response.ContentType="application/vnd.ms-excel"%>
<html>
<body>
<table>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
</tr>
<tr>
<td>5</td>
<td>6</td>
<td>7</td>
<td>8</td>
</tr>
</table>
</body>
</html>
Go gentle on me - this is my first post (and I don't claim to be anything other than a beginner in ASP !).
Many thanks in anticipation.![Smile :) :)](data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)
<%response.ContentType = "application/vnd.ms-excel" %>.
I need to know how to format the spreadsheet, to show gridlines, specify word-wrap on columns and the like.
Rather than post a lot of code, I'll use this example from W3schools (
<%response.ContentType="application/vnd.ms-excel"%>
<html>
<body>
<table>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
</tr>
<tr>
<td>5</td>
<td>6</td>
<td>7</td>
<td>8</td>
</tr>
</table>
</body>
</html>
Go gentle on me - this is my first post (and I don't claim to be anything other than a beginner in ASP !).
Many thanks in anticipation.