AJAX :: SlideShowExtender And Thumbnails - Go To Specific Images In Slides?

May 3, 2010

I use a slideshowextender and everything is correct, but now I want to add thumbnails. or someone know how to go to a specific images in the slides[]

View 1 Replies


Similar Messages:

AJAX :: Getting Images For SlideShowExtender?

Aug 7, 2010

I have the basic service...but I am trying to pulling the image url from an sql database table according to their id.

<%@ WebService Language="VB" %>
Imports System.Web
Imports System.Web.Services
Imports System.Web.Services.Protocols

' To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line.
<System.Web.Script.Services.ScriptService()> _
<WebService(Namespace:="http://tempuri.org/")> _
<WebServiceBinding(ConformsTo:=WsiProfiles.BasicProfile1_1)> _
Public Class SlidesService
Inherits System.Web.Services.WebService
<WebMethod()> _
Public Function GetSlides() As AjaxControlToolkit.Slide()
Dim MySlides(2) As AjaxControlToolkit.Slide
MySlides(0) = New AjaxControlToolkit.Slide("ClassifiedImages/Image1.jpg", "Blue Hills", "Go Blue")
MySlides(1) = New AjaxControlToolkit.Slide("ClassifiedImages/Image2.jpg", "Sunset", "Setting sun")
MySlides(2) = New AjaxControlToolkit.Slide("ClassifiedImages/NoImage.jpg", "Winter", "Wintery...")
Return MySlides
End Function
End Class

View 2 Replies

AJAX :: How To Display Images Stored In SQL Server DB Using SlideShowExtender

Nov 29, 2010

How to display images stored in SQL Server DB using SlideShowExtender

Heres my my Web Page:

[Code]....

View 2 Replies

Web Forms :: Display Images As Thumbnails?

Jan 21, 2010

I need to create a thumbnail solution in order to display pictures of products.
There can be more than 1 thumbnail per product and I need a way to enlarge the image as well. The thumbnails will be displayed in atleast 3 or 4 pages across the system and I need the ability to delete them as well. For version 2 of the software (knowing PM's it may be thrown into Version 1), I think I will need to be able to enhance this feature to allow movie clips so that's something I need to keep in mind. The images will be stored in the DB so I can sort the code to retrieve them but I'm originally a windows programmer and this is my first major ASP.NET project and also my first attempt at C#.

View 2 Replies

Create Thumbnails Of Uploaded Images

Apr 11, 2010

I have ran into an issue where I have to use ASP.NET to do a Thumbnail of images uploaded since the hosting company does not have any of the required ASP Classic 3rd party utilities that I can use. I have played around with several different Upload scripts before I found a tutorial on using: Uploadify (Love this script) with ASP.NET. [URL] What I am needing to do with the script is to create Thumbnails of the images that are uploaded, and when I try to do so, I get an IO Error. I was informed that I would have to create a Web Application instead of the Web Site as the web application would give me the default.aspx.designer.cs file for setting the FileUpload control as Public to be used in the upload.ashx file. But after doing that it basically breaks the code. What works in the Web Site, does not seem to want to work in the Web Application. What I would like from the .NET community is some help in making the Uploadify script to create Thumbnails. The script for the Thumbnails that I am using (or trying to use) is here

[Code]....

View 4 Replies

MVC :: Create Thumbnails For Images Uploaded?

Jan 8, 2010

- In have a website where users can upload their photo and along with their profile.- I store the photo as binary data in database.- Using ASP.NET MVC 2.0 FileContent option, I display Photo back in the browser, when user view his/her profile detailsQuestion: Currently I am showing image as-is and not restricting width/height, so that users see exactly whatever image they uploaded as-is without distortion. However I want to do like every other website: Show only smaller image alwayswith fixed size and allow user to click on it to pop-up and show original image as-is in pop-up.NOTE: I can do this simply restricting width and height to fixed limits but still show original image. But in this case image is distorted as it was not originally designed for this dimension.This very basic question and I am seeing many options, including some libraries. But don't know what is best way to do this using ASP.NET MVC 2.0

View 1 Replies

Images / Thumbnails - Improve Download Speed?

Jun 15, 2010

I have a website that enable the user to upload pics to server (uploaded pics sizes are 300x400 and approximately 270kb). In my app. I am having another page that lists the pics and I am using there an image control for that purpose. The Image control sizes are 80px width, 60px height. My question is how can I improve the download speed by minimizing the images ? Do I have to create a thumbnail for each picture the user upload?

View 4 Replies

Create Thumbnails Images Using Datalist Control

Jan 27, 2011

i would like to ask help coz i dont know how to create thumbnails images using datalist control and i am newbie to this control datalist, i have a database table with contains 3 cols which are employeeid, fullname, and imagepath, now i what to load the employee id, the fullname and the imagepath which actually contains only the path of actual image(which is located on imagefolder). my problem is how am i going to load that 3 info. i'm using asp.net c#

View 7 Replies

C# - Load Balancing And Web Images /Thumbimages/Thumbnails?

Mar 25, 2011

We are planning to introduce Load balancing in our server environment. Our site has lots of thumbnails (Thumbimages) to get displayed on the website. As all the images should be there under Web directory to get displayed on web site, do I need to maintain these TNs in all the servers? Is there any other way to accomplish this?

View 1 Replies

How To Return Images From Database (Access) To RSS In Form Of Thumbnails

Nov 15, 2010

How can i return images from my database (Access) to RSS in form of thumbnails this is my RSS code:

Code:

[code]....

View 3 Replies

AJAX :: SlideShow Extender - Page Method Can't Get Its Slides From Database?

Mar 8, 2010

I have this slideshow extender that works perfectly with hard coded images in the page method. However as soon as I try to make the page method get its images from the database it stops working; no images are returned.

I have tried to declare the datatable that the pagemethod uses both inside the pagemethod and in the on_load event. When in the last case I test the datatable contents by hooking it up to a gridview, it shows that it does get its proper data.

Declaring this dataTable as a private static dataTable, outside the page_load, to make it accessible in the page method (like in this --- post http://forums.asp.net/p/1115257/1726736.aspx---) also does not work.

So the page method with hard coded images works and also the query to the database works!

View 1 Replies

AJAX :: IE9 And SlideShowExtender?

Mar 22, 2011

A page using SlideShowExtender works fine with IE8 and FF, but not IE9.I am wondering if anyone has made SlideShowExtender work for IE9.

View 5 Replies

AJAX :: SlideShowExtender Not Working In MVC App?

Sep 6, 2010

I am using SlideHowExtender in MVC application. It is not working. I have put the same code in simple .aspx page it is working properly in same application.

Page : Views/Shared/Site.master
Image are in : Content/SlideShowHome
<script runat="Server" type="text/C#">

[code]...

View 3 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 :: SlideShowExtender - Sorting / Ordering

Jun 22, 2010

This was programmer error - a problem with my SQL. I am populating a slideshow extender control successfully from a list of images maintain din a MySQL database. I have created a "back" button that executes the following javascript:
[Code]....

This correctly goes back to my web service method that fetches rows from my database. I issue an "order by" in the SQL to sort the rows returned in descending tiome order and have verified that they populate the slide array in that order. However, when the page renders, the slideshow appears to play them in almost a random order. Is there any trick to getting images in a slideshow array to play in a particular order?

View 1 Replies

AJAX :: Stop SlideShowExtender Programmatically?

Feb 15, 2011

How to sop SlideShowExtender Programmatically and Can use Target Control Image to View in it Other Pics by passing Image URL to it by code

View 2 Replies

AJAX :: SlideShowExtender Default Image?

Dec 14, 2010

I keep on drawing this error:Sys.Net.WebServiceFailedException: The server method 'GetPhotos' failed with the following error: System.Data.SqlClient.SqlException-- The parameterized query '(@ImageAlbumGUID nvarchar(100))SELECT * FROM [Image] WHERE [Image' expects the parameter '@ImageAlbumGUID',which was not suppliedI understand how it is drawing it, When I skip creating an album It does not create an ID, so instead I would like to show a default image not from the db. I have been trying to figure out if @ImageAlbumGUID is nothing then the show image.

[code]...

View 1 Replies

AJAX :: Create A Randomized SlideShowExtender

Jul 12, 2010

Recently I had to create a slideshow using the AJAX SlideShowExtender. One of the requirements was to have the images show up in a random order so visitors won't see the same slides over and over again. To do this I added some code to the GetSlides() function to reorder the slide array randomly. Here's the code:

[System.Web.Services.WebMethod]
[System.Web.Script.Services.ScriptMethod]
public static AjaxControlToolkit.Slide[] GetSlides()
{
AjaxControlToolkit.Slide[] mySlide = new AjaxControlToolkit.Slide[]

[Code]....

View 1 Replies

AJAX :: How To Display Thumbnails In Datalist

Aug 9, 2010

My task is to display gallery for a particular school...i'm displaying thumbnails in a datalist...And when i mouse over on a particular thumbnail it must display the actual image in a panel....All the thumbnails and images are stored in the database(in byte format)...

Problem is when i'm executing its displaying blank image..

[Code]....

View 2 Replies

AJAX :: Can Combine The SlideshowExtender With The AnimationExtender Control

Jan 23, 2011

I'm using the slide show extender and want to combine it with some effects (e.g. fadeout of old picture / fadeIn new picture on picture change).

How do I do this? Can I combine the SlideshowExtender with the AnimationExtender control?

View 2 Replies

AJAX :: Update SlideShowExtender's ContextKey Without Postback?

Mar 28, 2010

I have been struggled for a day without success. Also I am not sure is this possible, since I am not too familiar with Javascript. let me know is there a way to fix my problem. Here is my problem:

What I have is a datalist and at each row it contain an UpdatePanel and inside the UpdatePanel there are a button, a slideShowExtender with related controls and a hiddenField. The hiddenField stored a second contextKey value. At page load time the default contextkey already assigned to the slideShowExtender. What I want to achieve is when user clicked the button the slideShowExtender will switch the Contextkey with the hiddenField value so that the SlideShowExtender will display a new set of images.

So far I can make everything work as I want with server side function, which executed when the button onclick. However this will generate a whole page post back, which I want to avoid. So I was thinking of using client side Javascript to do the contextkey assign and then update the updatePanel, but I am not too familiar with Javascript so I can't get it working :(

Here is my current code:

[Code]....

View 3 Replies

AJAX :: Slideshowextender GetSlide Method Failure?

Jul 7, 2010

I'll start off by stating that I've read numerous posts with the same or similar errors but haven't found anything to solve my issue. I'm getting a lengthy error message:

Sys.Net.WebServiceFailedException. The server method'GetSlides' failed witht he following error: <html>
<head> <title>Unknown web method GetSlides<br> ....

I appreciate any insight. See inserted code.

[Code]....

[Code]....

[Code]....

View 1 Replies

AJAX :: SlideShowExtender Control Image Relative Path?

Feb 20, 2011

I am using SlideShowExtender and I am using a Slideservice webservice located also in root folder. It works fine. My image folder is in ROOT FOLDER. But I have member webpage folders and a general web pages folder. Now, when I click on webpages of any of these folders, the slideshowextender stops working because it looks for my IMAGE folder in those Webpage Folders. I know this happens because I can see it trying to download the image from that URL which DOESNT EXIST(looking for my image folder in webpage folders).

How do I make a relative URL for the images so that the slideshowextender still POINTS to the ROOT FOLDER of images and displays images at all times.

I cannot make the slideshowextender work when I am logged into the system.

View 4 Replies

AJAX :: SlideShowExtender Control To Retrieve Image From Databases?

May 7, 2010

I am having problem Using AJAX SlideShowExtender Control to retrieve image from Databases with querystring which passes query to an ImageHandler.

all my images to display are stored in database and I can retrieve them from Database using Gridview and so on. but using AJAX SlideShowExtender Control to retrieve image from Databases is a problem.

for example this code in code behind;

[Code]....

The Bold part of the above code is the problem...

[Code]....

Actually this should pass the query to the ImageHandler.ashx class created in a folder Handlers in my Project.

the other two ...

[Code]....

slides shows perfectly because the Images are stored in the Filepath.

but I don't want to be storing my Images in a folder in my website but in database.

how to use AJAX SlideShowExtender Control to retrieve image from Databases?

whereby a querystring is passed to the Imagehandler that retrives image from database and resize them?

View 1 Replies

AJAX :: Default Image SlideShowExtender(if No Imagealbum Is Created)?

Dec 13, 2010

I am having trouble with my .asmx. I keep getting the error:

Sys.Net.WebServiceFailedException: The server method 'GetPhotos' failed with the following error: System.Data.SqlClient.SqlException-- The parameterized query '(@ImageAlbumGUID nvarchar(100))SELECT * FROM [Image] WHERE [Image' expects the parameter '@ImageAlbumGUID',
which was not supplied

I have my .asmx set up to display images if there is an album created from the db. If there is not an album created I would like to use a default picture. I tried setting the Image Url of the asp:Image to the image I want, but regardless I get this error.

<%@ WebService Language="VB" %>
Imports System.Web
Imports System.Web.Services

[code]...

View 1 Replies







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