I have a testexcel.asp file that for excel generation:
<%@ Language=VBScript %>
<%
Response.AddHeader "Content-Disposition", "attachment; filename=excelTest.xls"
Response.ContentType = "application/vnd.ms-excel"
%>
<table>
<tr>
<td>Test</td>
</tr>
</table>
Only when opening in excel the file goes blank. If I open it in notepad ++ save without changing anything and try to open in excel again it opens normally. Follow the test link 104.41.63.35/testeexcel.asp
I tried configuring the file but it did not work at all. Any tips?
Environment: Windows Server 2012 with IIS 8