-1

im using the navigateToUrl class to allow users to download some content - this works fine in Firefox however in IE a new blank page is opened with no content along with the download window (which is all i want showing up) any fixes for this ? cheers

cdugga
  • 3,849
  • 17
  • 81
  • 127
  • Can you point to an example? Does the same site get opened in both browsers? What does the IE URL show? – thgie Feb 18 '09 at 13:05
  • THE url opened is the location on my server of the item im allowing users to download – cdugga Feb 18 '09 at 13:50
  • Nah - I meant, does IT open the site you want at all or is it maybe IE that blocks popups or anything like that? – thgie Feb 19 '09 at 09:19
  • cheers sorted this by just using _self when opening the address - cheers – cdugga Feb 19 '09 at 10:43

1 Answers1

3

in navigateToURL keep the second parameter "_self"... example: navigateToURL(url,"_self");

if you want to show your your file in a window then you will have to use iframe.

hope this will solve your problem.