问题描述
亲爱的朋友,
我正在使用Asp.net c#和Sqlserver.
我已经使用Asp.net c#,Sqlserver 2005设计和开发了一个网站.
在我的网站上,第一页是登录页面.所以在该登录"页面之前,我还需要一个页面作为Flash简介.
用户从浏览器打开网站时. FLASH简介应该放在首位.
请帮我怎么做? ?
我几乎从16天开始尝试.请帮帮我.
在此先感谢.
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.
推荐答案
<object width="425" height="344">
<embed src="PATH_TO_YOUR_FILE" type="application/x-shockwave-flash" width="425" height="344"></embed>
</object>
上面的HTML标签用于嵌入Flash文件.使用上述标记并将aspx页面设置为默认页面.
Above HTML tag is used to embed flash files. use above tag and set your aspx page as default page.
<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.
这篇关于如何为网站创建Flash.的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!