AJAX :: Resize Images With The Slideshow?

Dec 1, 2010

I'm using the slideshow extender, however the images are not a standard size. The images are user supplied, and they are often displayed full size, so I can't standardize them. I need a way to resize them on the fly, and have them look good.

I've been working on this slide show off and on for some time. I've had many false starts, finding out after putting in quite a bit of time and work that there is just one thing or another that I cant't get to work. I'm hoping this ajax extender will be the answer. It won't be if I can't rezise the images.

what the extender can use as image sources? I know it can use an image on the hard drive, which is where my images are, but then I have the size problem. I tried using a webpage that uses a third party control to resizde the image, but that didn't work. I'm looking at this site: [URL] for resizing the images, can the output be used by the extender?

View 6 Replies


Similar Messages:

AJAX :: Put 3 Images To SlideShow?

Mar 27, 2010

I wonder if it is possible to have a clickevent for the SlideShow control. In this case I am now showing 2 images.

Is it possible in any way have a clickevent or to handle a click on the images that is showing to open up a browser with a URL like www.google.com ?

I beleive the Click event then should be in the Image Control in somehow ?

[Code]....

View 1 Replies

AJAX :: Slideshow Images Won't Display / Intelligencia URL Rewriter?

Nov 11, 2010

on another post i mentioned the problem but simplified it here! I am using ajax slideshow extender and getting images from my database
Datbase table file path example

/ ImageURL
/Members/matt//jeanette4.jpg
Code Behind
//here i open sql connection to database and retrieve images based on GUID of UserId which i add as sql parameter.//
// set the initial image
if (tblData.Rows.Count > 0)
{
imgShowImage.ImageUrl =tblData.Rows[0]["ImageUrl"].ToString();
imageLabel1.Text = tblData.Rows[0]["FirstName"].ToString();
}
}
}
[System.Web.Services.WebMethod]
[System.Web.Script.Services.ScriptMethod]
public static AjaxControlToolkit.Slide[] GetSlides()
{
AjaxControlToolkit.Slide[] slides = new AjaxControlToolkit.Slide[tblData.Rows.Count];
for (int i = 0; i < tblData.Rows.Count; i++)
{
DataRow dr = tblData.Rows[i];
slides[i] = new AjaxControlToolkit.Slide(
dr["ImageUrl"].ToString(),
dr["FirstName"].ToString(),
dr["LastName"].ToString());
}
return slides;
}
ASPX
Page shows the image
<asp:Image ID="imgShowImage" runat="server"
Height="300px" ImageAlign="Middle" />

This all works fine/ but when i set up the web config with Intelligencia.UrlRewriter code the slideshow images do not appear but the page gets divirted correctly

<rewriter>
<rewrite url="~/Matt" to="~/MembersClub/PublicProfile.aspx?Id=a8742959-aa5e-4830-9fc1-94f1b3d0bc41"/>
</rewriter>

The images are stored in a file directory named "Members".

View 1 Replies

How To Slideshow Images From Database Without Using Javascript

Jan 14, 2011

how to slideshow images from database without using javascript in asp.net.

View 4 Replies

Web Forms :: Slideshow Rendering Images From Database

Mar 3, 2012

how can i develop a slideshow of images coming from database?

View 1 Replies

Web Forms :: How To Resize Images

Mar 13, 2013

I have images of Dimension 3008 x 1960 and 1960 x 3008. I want to resize these images. I want that if width is more than height then width=600 and height should resize in proportion of width. If height is more than width then height=600 and width should resize in proportion of height. How i will do it using ASP.Net, C#.

View 1 Replies

Visual Studio :: Create Slideshow For Images Each One Inks To Different Page?

Mar 8, 2010

Iam using vb 2008 and I want to make slideshow for my images and each image links to different page

HoW CaN I MaKe It???

Do I need other software? I have swishmax3 but I don't know how to make it either?

View 4 Replies

Web Forms :: Implement Automatic Scrolling Left To Right Slideshow Of Images

Sep 18, 2013

I want to slideshow images from database, four images at a time.The images should slide after 2 seconds and slides should scroll from right to left.During this left most image should disappear and all remaining images should move to left,covering leftmost image. At the place of rightmost image a new image from database should be picked up.

View 1 Replies

Web Forms :: Create Slideshow Image Gallery Using Images From Database?

May 7, 2015

I want upload image in database and display image in slide show on website  without gallery and button using gridview.

View 1 Replies

Web Forms :: Dynamically Resize Images Using Image Handler

Feb 26, 2012

How it is possible to dynamically resize an image using an image handler nd web.config file?like i want each image uploaded by user to be resized to a specific size(aspect ratio) before being upload to server from database i also want that the resized image must not loose its Aspect ratio.

View 1 Replies

File Upload - Resize Images (in Right Proportion) Depending On Screen Size

Mar 24, 2010

I have made a cms where images can be uploaded. Now I have a problem that my images need to resize (in right proportion) depending on the screensize.

View 3 Replies

Forms Data Controls :: Use The Generatedimage Control In A Detailview To Resize Images Using VB?

Sep 20, 2010

I would like to know how to use the generatedimage control in a detailview to resize images using VB

View 4 Replies

Web Forms :: How To Resize Images Proportionally (aspect Ratio) Using Generic Handler

May 7, 2015

I have images of big size. I want to resize them according to their width and height. If width is bigger than height then maximum width will be 650px and height will in proportion of width. If height is bigger than width then maximum height will be 650px and width will be in proportion of height. How I will resize images proportionally using handler in ASP.Net,C#. 

View 1 Replies

Web Forms :: Automatically Resize Images (shrink And Expand) When Browser Is Resized

May 7, 2015

I have images at the head of the page in an iframe and in the main center page.  The image at the head flows over the social icons and the images at the center page resizing drops below and pushes the other image down.  I just want the images to resize when the browser is being resized. Go to [URL] .... and you'll see what I mean.

View 1 Replies

Web Forms :: Resize Large Number Of Images In A Folder In C# Windows Application

Jul 30, 2013

How to resize large number of images in a folder  in c# windows application. I am using following code to resize images of my folders. If images are less than 1600 ( in number) then no problem but if images are more than 1600 then i am getting error. My code is given below:-

public static Image ResizeImage(string file, int width, int height, bool onlyResizeIfWider) {
using (Image image = Image.FromFile(file)) {
// Prevent using images internal thumbnail
image.RotateFlip(RotateFlipType.Rotate180FlipNone);
image.RotateFlip(RotateFlipType.Rotate180FlipNone);

[Code] ....

Thumbnail creation in ASP.Net: System.Runtime.InteropServices.ExternalException: A generic error occurred in GDI

View 1 Replies

Web Forms :: Resize Small And Large Images To Match The Height And Width Of Image Control

Aug 18, 2012

In my Web page,I have a Div section with height=302PX and width=302PX.

In another page,I had a File Upload control. When we will upload the image,then the image will be displayed in that Div section.

1.When the image is large,it should be re-size and display in that particular Div section completely.

   For Eg:The image size like 350PX*350PX and 1024PX*1024PX, it should be re-size to Div Section size has 302PX*302PX.

2.When the image is Small,it shouldn't be re-size and display in that particular Div section completely.

   For Eg:The image size like 50PX*50PX,100PX*100PX and 302PX*302PX ,it shouldn't be re-size and display in that Div section.

   For Eg:The image size like 15PX*15PX these will appear very small.But When uploading the file these images also should displayed completely with as it is  in that  Div section.But the image will displayed neatly.

3.If there are any tools for these type of conditions using ASP.Net.

View 1 Replies

AJAX :: Autoplay On Slideshow?

Feb 23, 2011

I'm new to Ajax and use MS Visual Web Developer 2008 Express edition with VB and SQL Server Express.

I have a number of photos stored in individual folders and wish to use the Slideshow extender to display all images in a selected folder.

I've set up a small test slideshow which is similar to the Ajax Video tutorial but cannot get autoplay to work.

The page displayed show the "Play button" and the first image in my set of photos.

I've pasted my code below.

Also as I'm new to this I don't understand Namespace - Do I just replace this with my website URL?

Web Service file

mports System.Web

Imports System.Web.Services [code]....

View 1 Replies

AJAX :: How To Use The SlideSHowExtender To Create A Slideshow

Sep 29, 2010

I'm using Visual Studio 2010.

Are there any step by step tutorials on how to use the SlideSHowExtender to create a slideshow?

I have had a look before posting but couldn't find any step by step info.

Each time I try to drag the SlideShowExtender to a web form I get a round black circle with a black line through the middle, in other words it won't let me use it and I must be trying to use this control incorrectly.

View 1 Replies

AJAX :: Slideshow With Fade In / Out And Text?

Aug 2, 2010

I'd like to create a slideshow that goes through 4 pictures with some text that pops up on to each picture. An example of this is here - [URL]

I think this is using AJAX slideshow and animation? where I can find a tutorial to do this? I've not been able to find one that mixes images and text in this way.

View 3 Replies

AJAX :: Using The Slideshow With The BetterImage Control?

Feb 18, 2010

I use the BetterImage Control [URL] to display my images. It allows me to add copyright text to the image and I can set maximum width and maximum height and have the image display without stretching. They have their own slideshow, but the documentation is very limited and I think it displays everything in the specified folder. I need to create slideshows on the fly.

I want to use the ajax slideshow extender, but I need to resize the images on the fly, and add the copyright text. Is there a way to use the slideshow extender with the Better Image Control? I'm going to look into adding the copyright text and do the resizing myself, but I'd rather not have to.

View 1 Replies

AJAX :: Slideshow Extender Not Working For .NET 2.0?

Feb 2, 2011

The Slideshow isnt looping, however, it appears that the page is trying to refresh itself for each loop interval (I can see this at the bottom: downloading ...)

This should work because Im basically used the same code thats in the demo, minus the labels and buttons, and modified the web.config to be identical as well.

[Code]....

Here is the web.config:

[Code]....

View 5 Replies

AJAX :: Slideshow, Webservice And Database?

Sep 17, 2010

I would like to use the ajax slideshow extender and getting the Image Url stored in a databaseso far my webserivice look like this..but I think im making a mistake somewhere..its not working

<WebMethod()> _
Public Function GetSlides() As AjaxControlToolkit.Slide()
Dim Connection As SqlConnection

[code]...

View 1 Replies

AJAX :: Toolkit Slideshow Upgrade To 3.5?

Aug 3, 2010

An Ajax Toolkit SlideShow used to work in .NET 2.0. After being upgraded to 3.5 the same slideshow stops working as before. It always pops up "Object reference not set to an instance of an object.". Different rewrites cause different errors at embedded Jscript level that cannot be fixed. I have added the AjaxToolkit.dll 3.5 under bin folder and placed its items in the VS2008 toolkit.

View 5 Replies

AJAX :: Identifying A Namespace Used For 'slideShow'?

Jan 21, 2011

I'm using Visual Web Developer 2008 Express Edition, coding in C#. I think that the framework that I am aiming for is 2.0.

I am working on some old projects here where I work. However, I do not have access, nor do I know what the original programmer used to write this code.

The following code gives me an error:

[Code]....

(note that SlideList is an ArrayList that is being assigned to a DataSource. Also, this code is found inside a function named "CreateFeaturedSlideShow", which is called by the function "Page_Load" in "default.aspx.cs")

When I try to compile the project I get this error code: "The type or namespace name 'slideShow' could not be found (are you missing a using directive or an assembly reference?)"

When I comment out the code, the project compiles. However, when I try to run it, I get another error message: "Only one of AdvertisementFile, DataSource, or DataSourceID properties can be set on AdRotator 'AdRotator1'. "

From examing the rest of the code, it seems like this part of the project is populating a database with advertisement data, and selecting an ad at random, and keeping track of various statistics.

My problem is that I am having difficulty locating anything that will give me a slideShow namespace. The top result seems to be the SlideShow Extender, but after adding this toolkit to my toolbox nothing changed, which leads me to believe that I have something else.

Does anybody know where I can find this 'slideShow' that is referred to in the code?

View 2 Replies

AJAX :: How Implement Transformations In Slideshow Extender

Aug 21, 2010

i am working on ajax slideshow extender.

1) implement transformations between slide to slide.

2) and the direction means orientation in changing of slides.

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved