.QIF .IIF format downloader from web site
-
hi, All I have a web page that displays report (or it may not). I have export option (a button) that exports that report in excel format and dialog box appears that will let them save it to the disk as report.xls format. Now, I have been asked to create same kind of thing to generate .QIF / .IFF file format that is basically quicbooks related format. I need to do this very urgently. Any fast response would be really helpful here is my same code for excel format i need something for .qif or .iff format 'sb.Append(vbCrLf) 'Response.Clear() '' Response.ContentType = "Application/x-msexcel" 'Response.ContentType = "Application/x-msword" ''Response.OutputStream.Write(sb, 0, sb.Length) 'Response.AppendHeader("content-disposition", "attachment; filename=""" & filename & """") ''Write the file directly to the HTTP output stream. 'Response.AppendHeader("content-length", sb.Length) 'Response.Write(sb.ToString) 'Response.End() 'Response.Clear() Thanks in advance Needy