I am hosting an IE browser control in a simple, .NET winforms app. When I make the control navigate to certain content on disk, the control attempts to download the file (rather than displaying the content.) The exact same URL when pasted into the IE browser will properly display the swf file in question along with processed XML data that is passed as a parameter.
Abbreviated example of the URL:
file:///C:/...SomeSwfFile.swf?dataXML=%3C ... assume well-formed XML here
What can i do to get the browser control to behave just like the IE application with that type of URL?
Additional per feedback: HTML files are loaded into the control just fine.