I have the following code:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<%
Response.ContentType="application/vnd.ms-excel"
Response.AddHeader "content-disposition", "attachment; filename=" & "Address.xls"
%>
The problem is that zipcode columns are automatically formatted as numbers. Is there any way to specify that all the cells are to be formatted as text?
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<%
Response.ContentType="application/vnd.ms-excel"
Response.AddHeader "content-disposition", "attachment; filename=" & "Address.xls"
%>
The problem is that zipcode columns are automatically formatted as numbers. Is there any way to specify that all the cells are to be formatted as text?