Hello,
I'm trying to get my users to download "maps" from bungie.net from my website.
Example map:
http://www.bungie.net/Online/Halo3UserContentDetails.aspx?h3fileid=31604914
Link users need to click to download map:
<a id="ctl00_mainContent_xboxDownloadButton" href="javascript:__doPostBack('ctl00$mainContent$xboxDownloadButton','')">Download to Halo 3</a>
When a user clicks this link the map is downloaded to the users Xbox 360.
Option 1:
I tried opening a hidden iframe
then when the user clicks on a link JavaScript will load into my iframe
. Thus downloading the map. The only problem is it doesn't work.
> <iframe name="download_frame"
> src="http://www.bungie.net/Online/Halo3UserContentDetails.aspx?h3fileid=1244"
> width="0px" height="0px"></iframe> <a
> href="javascript:__doPostBack('ctl00$mainContent$xboxDownloadButton','')"
> target="download_frame">Download</a>
Option 2:
Is it possible to have a link with a src
something like this...
URL + JavaScript
Option 3:
Any other suggestions of how to get users to download this map without having to go to this website would be great.