How to display images .jpeg, .jpg, .bmp, .png, & .swf(Flash images) under one control ?
-
Hi all, I have to display all types of images including flash imges to user. I could able to display images of all formats except .swf(flash) files in Image Control of asp.net. For Displaying .swf(flash)images i used FlashConrol(from FlashControl.dll). This control is only displayinf images of type .swf, but i want to display all types of images under single control(asp.net control / third party control). Is it possible ? If yes!, How? Please help me. Thanks in advance.
-
Hi all, I have to display all types of images including flash imges to user. I could able to display images of all formats except .swf(flash) files in Image Control of asp.net. For Displaying .swf(flash)images i used FlashConrol(from FlashControl.dll). This control is only displayinf images of type .swf, but i want to display all types of images under single control(asp.net control / third party control). Is it possible ? If yes!, How? Please help me. Thanks in advance.
Have you tried using a literal to display the images?
"Sex is not the answer, it's the question and the answer is yes"
-
Have you tried using a literal to display the images?
"Sex is not the answer, it's the question and the answer is yes"
Hi, Thanks for your reply. Using a literal ? Do you mean Literal control ? If that, how can we display images in literal control.. Cheers, sekhar
-
Hi, Thanks for your reply. Using a literal ? Do you mean Literal control ? If that, how can we display images in literal control.. Cheers, sekhar
Yup, a literal control. Here's an example:
literal.Text = "<img src=\"picture.jpg "\" />";
"Sex is not the answer, it's the question and the answer is yes"
-
Yup, a literal control. Here's an example:
literal.Text = "<img src=\"picture.jpg "\" />";
"Sex is not the answer, it's the question and the answer is yes"
Hi, Thanks for your reply, But i have to assign the path at runtime. and there is a Previous & Next buttons in my page . i have to show the next image when user clicks on Next, previous image when user clicks on Previous buttons. I am storing image in diffrent folders, the path is stored in database table. So how can i use this literal control. Is literal control displays Flash images(.swf files). Please help me... Cheers, sekhar
-
Hi, Thanks for your reply, But i have to assign the path at runtime. and there is a Previous & Next buttons in my page . i have to show the next image when user clicks on Next, previous image when user clicks on Previous buttons. I am storing image in diffrent folders, the path is stored in database table. So how can i use this literal control. Is literal control displays Flash images(.swf files). Please help me... Cheers, sekhar
That shouldn't be a problem. Just edit the code where needs be to allow for this. So just put the code in event handlers of the next buttons and use a count to increment and decrement clicks on the buttons so the events are registered. I'm not 100% sure if it displays flash images but it can be used as a container for the player you mentioned that you downloaded. I know it definately works for images and as a container for a mediaplayer to display videos. Here's code for the video:
mplayer.Filename = "video.flv";
mplayer.autoStart = false;
ltlMplayer.Text = mplayer.getval();Hope that helps you
"Sex is not the answer, it's the question and the answer is yes"
-
That shouldn't be a problem. Just edit the code where needs be to allow for this. So just put the code in event handlers of the next buttons and use a count to increment and decrement clicks on the buttons so the events are registered. I'm not 100% sure if it displays flash images but it can be used as a container for the player you mentioned that you downloaded. I know it definately works for images and as a container for a mediaplayer to display videos. Here's code for the video:
mplayer.Filename = "video.flv";
mplayer.autoStart = false;
ltlMplayer.Text = mplayer.getval();Hope that helps you
"Sex is not the answer, it's the question and the answer is yes"
Hi, Thanks for your reply. I dont have any video files to display. I have to display images of different formats including Flash images(.swf files). In image control i could able to display all type of images except .swf(flash images). Here is my problem. I want to display all in single asp.net control. Cheers, sekhar
-
Hi, Thanks for your reply. I dont have any video files to display. I have to display images of different formats including Flash images(.swf files). In image control i could able to display all type of images except .swf(flash images). Here is my problem. I want to display all in single asp.net control. Cheers, sekhar
I realise this but Flash works similarily to videos when being displayed so try the example i gave you and modify the code so it works for you otherwise i'm sorry i don't know what else to suggest :)
"Sex is not the answer, it's the question and the answer is yes"
-
I realise this but Flash works similarily to videos when being displayed so try the example i gave you and modify the code so it works for you otherwise i'm sorry i don't know what else to suggest :)
"Sex is not the answer, it's the question and the answer is yes"
Hi, Thanks for your help. Cheers, sekhar