Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Returning two files...
Message
From
02/06/2004 17:47:42
 
 
To
All
General information
Forum:
ASP.NET
Category:
Other
Title:
Returning two files...
Miscellaneous
Thread ID:
00909414
Message ID:
00909414
Views:
46
Ok,

I am doing the following which works great to return a single text file:
// Send results to client to save
Response.ClearContent();
Response.ClearHeaders();
Response.AppendHeader("Content-Disposition", "attachment; filename=\"" + "ach.txt" + "\"");
Response.ContentType = "txt/txt";
Response.Write(sb.ToString());
Response.Flush();
Response.Close();
So, how would I change this to send two or more seperate text files? I think it has something to do with multipart but I can't seem to get anything to work.

Thanks,
BOb
Next
Reply
Map
View

Click here to load this message in the networking platform