FLASH file in VB.Net Web project

G

Guest

How do I access a flash file in my .net web pages.

I have worked with image files with no problem such as:

in my header.ascx program, I have a:
<IMG src= "images/header_gold2.jpg">
Then, in my appform.aspx program, I have a:
<% Register Tag Prefix="uc1" src="header.ascx" %> and then after <HTML>:
<uc1:header id="header1" align="center" runat="server"></uc1:header>

Now to access the FLASH file, I would like to do something like:
<IMG src="flash/header.htm"> 'I know the IMG is not correct.
The header.htm file with its corresponding header.swf is in the
flash
folder.

How would I accomplish this?
 
J

J

What do you mean when you say access? Do you just want
to display it or do you want to manipulate it from your
code?
R
J
-----Original Message-----
How do I access a flash file in my .net web pages.

I have worked with image files with no problem such as:

in my header.ascx program, I have a:
<IMG src= "images/header_gold2.jpg">
Then, in my appform.aspx program, I have a:
<% Register Tag Prefix="uc1" src="header.ascx" %>
 
G

Guest

"J":

Thanks for responding. Sorry about the choice of word "access". What I
mean is to display the flash file in my web page. I know the file is OK
because when I click on the header.htm file in Windows Explorer (it must
"grab" the header.swf file), the flash moving header image displays.

So I would think there would be something in HTML (like IMG src=) that
would display the flash file.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top