Click here to Skip to main content
15,893,588 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Dear Friends,

Am working on Asp.net c#, Sqlserver.

I have Designed and Developed a Website using Asp.net c#, Sqlserver 2005.

In my website First Page is LOGIN PAGE. so Before that Login page I need one more page as Flash Intro.

When the User open the Website from the Browser. a FLASH Intro should come first.

Please help me how to do this ? ?

Am trying almost from 16 days. Please help me.

Thanks in Advance.
Posted

HTML
<object width="425" height="344">
  <embed src="PATH_TO_YOUR_FILE" type="application/x-shockwave-flash" width="425" height="344"></embed>
</object>


Above HTML tag is used to embed flash files. use above tag and set your aspx page as default page.
 
Share this answer
 
Comments
Ranjith Reddy CSE 30-Jun-12 7:11am    
I dont have Flash SWF File, Please tell me how ot do this.
Sangramsingh Pawar 30-Jun-12 8:21am    
It is not possible to add flash object without SWF File you need flash introduction
Just Use Below COde:
<embed width="250" height="150" src="xxxxx.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" wmode="transparent" type="application/x-shockwave-flash">  </embed>

give your file path into Src.

this will surely help you.
 
Share this answer
 
Comments
Ranjith Reddy CSE 30-Jun-12 7:11am    
I dont have Flash SWF File, Please tell me how to do this.
create a div for your flash. set div opacity, or z-index parameters.
use jquery last version and use windows load function like this

JavaScript
 $document.ready(function () {    
    $("#divForFlash").animate({
    "toggle": "hide", "opacity": "hide"
    }, { duration: 10000 });
});


you can set your divForFlash div like this
HTML
<div id="divForFlash" style="position:absolute; width:1000px; height:620px; z-index:10x; display:block; top:-600px;">your flash code </div>


dont forget set your flash divs style like you need for your web page design

i tried to told shortly. if you didnt understand you can ask, after then i will tell you clearly more than this.
 
Share this answer
 
Comments
Ranjith Reddy CSE 30-Jun-12 7:11am    
I dont have Flash SWF File, Please tell me how to do this.
Ranjith Reddy CSE 30-Jun-12 7:13am    
Please Please Explain me in Detail....I need Flash INTRO for first page. I need Step by step so that i can do easily.

Thanks.
Dain Ucak 30-Jun-12 7:25am    
if you have a flash file my telling will help you. i couldnt tell you how you will create a flash intro. sorry

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900