M
MarkMurphy
I have a simple export.aspx page that allows a user to fill in a form
to export some data. The postback logic writes the data to the
response stream. I have two small issues:
1) The data is tab-delimited text. If I set
Response.ContentType="plain/text", the format is fine, but an
Open/Save dialog will appear on the IE6 browser, which I don't want.
If don't set the ContentType at all, the dialog goes away, but the
browser removes the linefeeds from the output.
2) The browser history does not contain the original form display.
Hitting the back button skips over the form.
Thanks!
Mark
to export some data. The postback logic writes the data to the
response stream. I have two small issues:
1) The data is tab-delimited text. If I set
Response.ContentType="plain/text", the format is fine, but an
Open/Save dialog will appear on the IE6 browser, which I don't want.
If don't set the ContentType at all, the dialog goes away, but the
browser removes the linefeeds from the output.
2) The browser history does not contain the original form display.
Hitting the back button skips over the form.
Thanks!
Mark