I am using Visual Studio 2010 asp.net 3.5 C# and the latest version of the Ajax toolkit to create a slide show. I have a ToolScriptManager, SlideShowExtender and a prev,play and next buttons. Problem is, I don't know what to do next.
I have used a ajax control toolkit slide shox extender to display a slide show of images.
Currently, when a user hovers mouse over the slide show, the slide keeps on changing. I want that the slide should not change, if a user hovers the mouse.
I want to make a slide show on my page, the images are to be fetched from batabaseMYSQL).please help me as i am not able to make it,tried script manager and slideshow extender control but nothing happening
I need to set up the slide show based on a querystring parameter. I thought I had this figured out, but I clearly don't understand something about how the webservice works. I have this in the .aspx page:
I have a web project that I'm creating using ASP.Net 2.0 (VB code). I need to figure out how to create a slide show that will display a series of pictures that are stored in an xml file. Everything that I have found online shows how to create a slide show using the Ajax Toolkit for 3.5 or greater. what to use to create a slide show using vb.net 2.0?
ALTER procedure [dbo].[storeinfo1] @Behcode nvarchar(10) as begin select behcode,Name ,(select Behcode from House_p where BehCode=@Behcode) behcodeP from House_Info where BehCode=@Behcode end
I have image=>Productimage in product.aspx page I want if in House_p table there be my users behcode it do Productimage.visible=true
i.e
In House_info table exist user Sara with behcode=3333 her behcode isn't in House_p table so I want in product.aspx page ProductImage.visible=true
I need a slide show in datalist. Let me explain my requirement in detail. I have few columns like ID,ProductName, ProductImage,Product Price columns in my datalist. In that ProductImage is only visible column rest all columns are unvisible. OnPageload user has to see first image then after 5 seconds he has to see second and so on. One it reaches to last image. Again it has to start from the first image. I need a stop button to stop the slide show and then start button to start the slideshow. The important thing is I need to trace the id whenever the user stops the slide show. I hv done the manual slide show. I mean I have done next and previous button. User can manually move to previous and next image. But how to make it work automatically on pageload. I know we have ajax slide show for this purpose. but how to trace the product id while stopping and starting in Ajax slide show.Expecting Your valuable suggestion.Note : I am loading the images from the directory and filename from the database
I want to create a small application using ASP.NET. The application will let the user select a few images/pictures from a folder. After selecting the images/pictures, the user will then click on a Button to create slide show using those images/pictures. Anyone has any idea, how to start or where to find information regarding this.
I got the following code with the help of raghav khunger and I wanna add a play and stop button on it to cycle the pictures orderly and stop them. how can I do that?
I'm using visual studio 2010 and sql server 2008. I'm trying to use a web method to get urls from a database for an ajax slide extender control. I’ve been able to create a web method to call the slides and it worked. Then I wanted to create a parameter in my web method that took a parameter. I’ve been unable to get it to work with the parameter with the web method. I’m either using the wrong syntax when calling the parameter or my web method is incorrect.
This is the code for the web method with out parameter that works
Code: <WebMethod()> _ Public Function GetSlidesDBGalEngage() As AjaxControlToolkit.Slide() Dim connetionString As String Dim connection As SqlConnection Dim command As SqlCommand
[Code] ....
This is the way I calling the web method in my extender that works
Code: <WebMethod()> _ Public Function GetSlidesDBGalEngage(ByVal Category As String) As AjaxControlToolkit.Slide() Dim command As SqlCommand Dim adapter As New SqlDataAdapter
[Code] ....
This is how I'm trying to call the web method with paramater from my slide extender which doesn't work
HTML Code: <cc1:SlideShowExtender ID="SlideShowExtender1" runat="server" AutoPlay="True" ImageDescriptionLabelID="label1" NextButtonID="btnNext"
[B]SlideShowServiceMethod="GetSlidesDBGalParm("Other")" [I]I've tried using both single qoutes and double quotes and notheing works[/I].[/B] SlideShowServicePath="../SlideService.asmx" PlayButtonID = "btnPlay" PreviousButtonID="btnPrev" TargetControlID="image1" ClientIDMode="AutoID"> </cc1:SlideShowExtender>
Something is wrong with the syntax in the web method with the paramter or something is wrong with the way I'm calling it .
I'm going to do a project soon for a photographer. There will be a number of pages that will have a photo album or slideshow on them. I'm trying to figure out the best way to have this site perform well and the best way to get the images on the client in the background.
I'm hoping to have the slide shows for the other pages load in the back ground after the home page loads. I thought this would not affect the loading of the home page and decrease the amount of time it would take for the other subsequent pages to load.
AJAX seems like a good fit for this with the async calls. I'm thinking about using an async call to fetch and cache the other images and/or slideshows.
Is this a good way to do this? Is there a better way of doing this? Would it be better to have anew thread do the caching to the client?
I've written a nice page with accordion element in it, but I've found that on some browsers, with some setting- the accordion won'trespond to clicking on it. So, what I get is an accordion that shows headers, but clicking on them won't open the data.What I'm guessing is that the sliding effect is blocked for some reason.What I'm trying to achieve are this two:1. Cancel the sliding effect so the data will show right-away, thus answering the problem caused by some browsers2. Cancel It only when the page detects that there might be a problem. (I'm not quite sure what setting I am looking for).Obviously, 1 is quite more urgent. If 2 is not solved I geuss I can use 1 for all the cases, but still- If anyone could find answer for 1- that would be great.