RE: XP sp2, IE, address bar does not update, c#
From: kobe123456 (abc_at_123.com)
Date: 12/01/04
- Next message: mrbog: "How would the user know what plugins are installed?"
- Previous message: jasmin leroux: "Add controle in Internet Browser"
- In reply to: kobe123456: "XP sp2, IE, address bar does not update, c#"
- Messages sorted by: [ date ] [ thread ]
Date: Wed, 1 Dec 2004 09:19:01 -0800
Here is a simpler c# code that illustrates the problem ...
string filepath = "c:\\glenn\\chatMsgs.txt";
string filename = System.IO.Path.GetFileName(filepath);
Response.Clear();
Response.ContentType = "application/octet-stream";
Response.AddHeader("Content-Disposition", "attachment; filename=" + filename);
Response.Flush();
Response.WriteFile(filepath);
The following problem is XP sp2 specific. The problem does NOT occur in
other IE versions or other browsers.
I am having a problem with the url address line not updating when clicking
on various links in my application. The navigation to the various links
works fine.
However the url address line never changes. This occurs after I click on a
button which then streams a text file back to the browser.
The text file content streams back to the browser just fine and the content
is displayed in notepad. From a C# perspective - Here is how I am streaming
the content back to the
browser.
Here is a link to the aspx page. Note that the url address line does not
change after
clicking the DownloadFiles button then clicking the cnn link if one is using
XP sp2.
For all other browsers the url address line works correctly.
http://206.225.102.57/VeaProject/ClassLibrary/TestDownload.aspx
- Next message: mrbog: "How would the user know what plugins are installed?"
- Previous message: jasmin leroux: "Add controle in Internet Browser"
- In reply to: kobe123456: "XP sp2, IE, address bar does not update, c#"
- Messages sorted by: [ date ] [ thread ]