Sir ,
what is the code for flash file(.swf) uploading in asp.net c# language?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Vijay YadavPosted May 4, 2011, 8:07 AM
You can upload the swf file in the same as you upload other text or any other file by using FileUploasd control for ex:
if (FileUpload1.HasFile)
{
FileUpload1.SaveAs(Server.MapPath("~\\Images\\" + FileUpload1.FileName));
}
Vijay YadavPosted May 5, 2011, 12:50 AM
jaheena jamalPosted May 5, 2011, 12:04 AM
Thank you
...................................................................................................
Regards
jahi
Soft CornerPosted May 4, 2011, 7:59 AM
Do you mean how to play swf file on website? Or
If it is about uploading files then see Our recommended articles at right side.