PC Review


Reply
Thread Tools Rate Thread

Click a link to download a .SWF file.

 
 
Mr.Magic
Guest
Posts: n/a
 
      30th Oct 2009
I know how to load a .SWF file on a web page. But how do I make it so that I
have a link a person can click and that will cause the open/save dialog to
appear?

TIA - Jeff.


 
Reply With Quote
 
 
 
 
Alexey Smirnov
Guest
Posts: n/a
 
      1st Nov 2009
On Oct 30, 6:09*pm, "Mr.Magic" <Muf...@NoWhere.Com> wrote:
> I know how to load a .SWF file on a web page. But how do I make it so that I
> have a link a person can click and that will cause the open/save dialog to
> appear?
>
> TIA - Jeff.


try this

FileStream MyFileStream = new FileStream("filename.swf",
FileMode.Open);
long FileSize = MyFileStream.Length;
byte[] Buffer = new byte[(int)FileSize];
MyFileStream.Read(Buffer, 0, (int)MyFileStream.Length);
MyFileStream.Close();
Response.ContentType="application/x-shockwave-flash";
Response.AddHeader( "content-disposition","attachment;
filename=filename.swf");
Response.BinaryWrite(Buffer);
 
Reply With Quote
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
PDF Link: Click link: Open option: File doesn't exist Mekon Mike Windows XP Internet Explorer 1 25th Jun 2008 03:43 PM
IE 6.0 Unable to Download files - Attempting to When you attempt to download a file from a Web site, the Copying dialog box may appear ... Internet Explorer Window Closes When You Click a Download Link . Robert Cox Windows XP Internet Explorer 6 5th Sep 2007 09:08 PM
Re: How can I display a download link in my (C#) ASP.NET web form to download a file stored in my sql db? Steve C. Orr [MVP, MCSD] Microsoft ASP .NET 0 7th Mar 2005 07:14 PM
Files won't download when I click on a link in Internet Explorer =?Utf-8?B?QUZyYW5jaXNjb2lp?= Windows XP Internet Explorer 1 5th Mar 2005 06:45 PM
IE 6 SP2 window closes when I click download link Fernando Windows XP Internet Explorer 2 27th Aug 2004 09:45 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 04:31 AM.