Please tell me what is wrong with this code... It worked fine in 5.0 but now in 5.5 it won't... I am creating a comma seperated string
(session("strExport")) then am redirecting to a file containing this code:
<%
strFilename = "List_" & Date() & ".csv"
strFilename = Replace(strFilename, "/", "_")
Response.Addheader "Content-Disposition", "attachment; filename=" & strFilename
response.write session("strExport")
%>
thanks in advance,
Michael