AJAX :: Exception Error With Slideshow Service

Feb 1, 2010

I have the following problem with a slideshow in Ajax. Hope I have put it in the right Ajax forum. Some info: I do use MS Access and in the 'autos table' i do have the following fields:

field 1: nummer (text field) - this is the name of the image
field 2: cat (integer) - this is the category of the cars
field 3: naam (text field) - this is the name of the car
field 4: model (text field - this is the model of the car

In my masterpage i do have a menu where you can make the choice of a certain category of cars. This is done by a call to: slideshow.aspx?cat=100 In Slideshow.aspx a panel is setup and also buttons to manipulate the found images. Also the AjaxToolkit:Slideshowextender is defined as follows:

<ajaxToolkit:SlideShowExtender ID="SlideShowExtender1" runat="server"
TargetControlID="Image1"
SlideShowServicePath="slideservice.asmx"
SlideShowServiceMethod="Getslides"
AutoPlay="true"
ImageTitleLabelID="Name"
ImageDescriptionLabelID="Desc"
NextButtonID="NextButton"
PlayButtonID="PlayButton"
PlayButtonText="Play"
StopButtonText="Stop"
PreviousButtonID="PrevButton"
PlayInterval="4000"
Loop="true"
ContextKey="catid" />
As you can see the contactkey is also defined.
Inside the codebehind of slideshow.aspx.vb their is a sub defined:
Partial Class Slideshow
Inherits System.Web.UI.Page
Protected Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs) Handles Me.Load
SlideShowExtender1.ContextKey = Request.QueryString("catid")
End Sub
End Class
The call from slideshow.aspx is to a slideservice.asmx which contains:
<%@ WebService Language="VB" CodeBehind="~/App_Code/SlideService.vb" %>
Here we call slideservice.vb.
The coding of the slideservice.vb file is:
Imports System.Web
Imports System.Web.Services
Imports System.Web.Services.Protocols
Imports System.Data.OleDb
Imports System.Web.UI.Page
<WebService(Namespace:="http://vancouver.com/")> _
<WebServiceBinding(ConformsTo:=WsiProfiles.BasicProfile1_1)> _
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
<System.Web.Script.Services.ScriptService()> _
Public Class SlideService
Inherits System.Web.Services.WebService
<WebMethod()> _
Public Function GetSlides(ByVal contextKey As String) As AjaxControlToolkit.Slide()
Dim strconn As String = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=|DataDirectory|Vancouver.mdb"
Dim cn As New OleDbConnection(strconn)
Dim SQLStr As String
SQLStr = "SELECT nummer, naam, model FROM Autos WHERE ((Autos.cat) = @catid)"
Try
cn.Open()
Dim cmd As New OleDbCommand(SQLStr, cn)
Dim sCatid As String = ""
' Give the value to sCatid from contextkey
If sCatid.Trim().Length = 0 Then sCatid = contextKey
cmd.Parameters.AddWithValue("@catid", sCatid)
Dim thisReader As OleDbDataReader = cmd.ExecuteReader()
Dim photoCounter As Integer
While thisReader.Read()
photoCounter = photoCounter + 1
End While
If (photoCounter > 0) Then
'we now know how many pictures there are in this category of the database
Dim MySlides(photoCounter - 1) As AjaxControlToolkit.Slide
'set up the command string
Dim photoLookupCmd As New OleDbCommand(SQLStr, cn)
'and add the parameters to it for the category
photoLookupCmd.Parameters.AddWithValue("@catid", sCatid)
thisReader = photoLookupCmd.ExecuteReader()
Dim i As Integer
For i = 0 To photoCounter - 1
thisReader.Read()
Dim number As String = thisReader.GetString(0)
Dim name As String = thisReader.GetString(1) + " - " + thisReader.GetString(2)
MySlides(i) = New AjaxControlToolkit.Slide(("pictures" + number + ".jpg"), name, "")
Next
thisReader.Close()
Return MySlides
Else
Dim MySlides(0) As AjaxControlToolkit.Slide
MySlides(0) = New AjaxControlToolkit.Slide("pictures99999.jpg", "sorry - not available", "pls. mail us to report")
thisReader.Close()
Return MySlides
End If
Catch x As Exception
Dim MySlides(0) As AjaxControlToolkit.Slide
MySlides(0) = New AjaxControlToolkit.Slide("pictures99999.jpg", "Exception error", "pls. mail us to report")
Return MySlides
Finally
cn.Close()
End Try
End Function
End Class

When i run the code i will get an exception error and when following the code in debug mode i do see that inside the first loop in FOR i = 0 to photocounter - 1 : The first loop gets the right info from the database inside Myslide(1) fields. Going into the second loop i will get after dim name as string .....

the program goes to catch x as exception. I did see that number was found correctly during the previuous line. During an other debug session i noticed that the Parameter.item has the following error (which I do not understand), saying: Overload resolution failed because no accessible 'Item´ accepts this number of arguments.

View 1 Replies


Similar Messages:

AJAX :: Slideshow Control Production Error?

Apr 5, 2010

am using Slideshow ajaxcontrol and its works perfect in the VS2008 in the local system, where as when I move to server (production) it is not working, I was getting different issues, I solved few by refering some forums, where as still it is not wroking or no error can any one help me here.Here is the URL of production: http://74.55.115.122/$sitepreview/focusedreader.com/demo/Default.aspxCode of Default.aspx is

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-

[code]...

View 2 Replies

AJAX :: Microsoft JScript Runtime Error In Using Slideshow Extender

May 1, 2010

when I run my site that used Slideshow Extender, i get this Error:

Microsoft JScript runtime error: Sys.InvalidOperationException: Can't add a handler for the error event using this method. Please set the window.onerror property instead.

in localhost i ignore this Error and Slideshow Extender works correct.

but when i publish the site I have JScript Error and Slideshow Extender not be loaded.

View 1 Replies

Show Error In Application When Exception Occur In Webs Service?

Aug 11, 2010

how can we show error in our application when exception occur in webs service

View 10 Replies

Error - Module Not Found Exception From 2.0 Web Service On Windows Server 2008 R2

Sep 14, 2010

We have an issue with a .NET 2.0 web service application that is generating a module not found exception when we try to load on server 2008. A second server running the same 2008 version loads the service fine.As part of the investigation we have taken the default hello world .NET 2.0 web service and deployed to both servers and have exactly the same issue with it running fine on one but not the other. The issue is trying to track down the module in question. Running process explorer and dependency walker doesn't seem to give us a clue.

The full error is:-

[code].....

View 1 Replies

WCF / ASMX :: Return Dynamic / When Returns To Aspx Error At Aspx(no Exception Gets Caught At  @ Service)?

Feb 9, 2011

In our project WCF service is acting as our BLL.

i had scenario where i had to fill list of object class without knowing its type see code:

Added contract

[OperationContract]
dynamic GetReferenceTableData(string tableName);

method in service:

public dynamic GetReferenceTableData(string tableName)
{
try
{
dynamic tableData = ReferenceTableDAL.GetReferenceTableData(tableName);
return tableData;
}
catch (Exception ex)
{
throw;
}
}
method at DAL(ReferenceTableDAL):
public static dynamic GetReferenceTableData(string tableName)
{
Database db = DatabaseFactory.CreateDatabase(Flags.ConnectionStringKey);
DbCommand dbCommand = db.GetStoredProcCommand("USP_GETTABLEDATA");
dynamic objDynamic = null;
if (tableName.ToLower() == "a")
{
objDynamic = new List<A>();
}
else if (tableName.ToLower() == "b")
{
objDynamic = new List<B>();
}
else if (tableName.ToLower() == "c")
{
objDynamic = new List<C>();
}
try
{
db.DiscoverParameters(dbCommand);
dbCommand.Parameters["IN_TABLENAME"].Value = tableName;
DataSet dsTableData = db.ExecuteDataSet(dbCommand);
if (tableName.ToLower() == "a")
{
foreach (DataRow dataRow in dsTableData.Tables[0].Rows)
{
objDynamic.Add((A)dataRow);
}
}
else if (tableName.ToLower() == "b")
{
foreach (DataRow dataRow in dsTableData.Tables[0].Rows)
{
objDynamic.Add((B)dataRow);
}
}
else if (tableName.ToLower() == "c")
{
foreach (DataRow dataRow in dsTableData.Tables[0].Rows)
{
objDynamic.Add((C)dataRow);
}
}
}
catch (Exception ex)
{
throw;
}
return objDynamic;
}
@ Aspx
try
{
using (DataServiceRef.DataServiceClient petService = new DataServiceRef.DataServiceClient())
{
dynamic tableData = petService.GetReferenceTableData(tableName);
//tableData is null ,exception
}
}
catch (Exception ex)
{
throw;
}

There is no exception at dal or service end when i debug list gets filled ok but when returns to aspx error at aspx(no exception gets caught at @ service) but exception at aspx i.e:

Message:The underlying connection was closed: The connection was closed unexpectedly.
Stack Trace: at System.Net.HttpWebRequest.GetResponse()
at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)

View 3 Replies

AJAX :: Accordion Control Showing Error - Error Rendering Control - AsssAn Unhandled Exception?

Feb 18, 2011

I am new to ASP.NET and AJAX

I want to use Accordion control in my page

but when i try to add that controlit is showing the error.

My code is

[code]....

View 1 Replies

Ajax Error Handling - How To Show Full Exception

Apr 5, 2011

how can i show the full blown .net exception that may occur on an ajax enabled page. i want it to show like it would if the page wasnt using ajax. This for my QA environment for which i dont have the option to temporarily disable update panel. Also i dont want javascript to handle it as our QA testers are wanting to see the usual full blown asp.net exception.

View 1 Replies

AJAX :: Missing Manifest Resource Exception Error - Could Not Find Any Resources Appropriate For The Specified Culture

Jun 4, 2010

i am new to using AJAX.I am using Visual Web Developer 2010 and I followed all the steps given on the http://www.asp.net/ajaxlibrary/act.ashx website to install AJAX.However, when I try to run my website,I get an error:

"Could not find any resources appropriate for the specified culture or the neutral culture. Make sure "AjaxControlToolkit.Properties.Resources.resources" was correctly embedded or linked into assembly "AjaxControlToolkit" at compile time, or that all the satellite assemblies required are loadable and fully signed."

View 1 Replies

AJAX :: Handle And Display Exception Error Message During Update Panel Partial PostBack

May 7, 2015

I want handle exceptions in update panel control with c#.

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 :: 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 :: 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 :: 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

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

AJAX :: Using Imgebutton As Playbutton In Slideshow Extender?

May 17, 2010

I'm using ajax slideshow extender for a slideshow. How do I use an imagebutton to play/pause slideshow. I would have to change the imageurl with the corresponding action...

View 1 Replies

AJAX :: Display Hyperlinks Inside Of Slideshow?

Mar 16, 2011

Is it possible to display hyperlinks inside an AJAX slideshow window?... that is a different hyperlink in each "slide"

View 1 Replies

AJAX :: Slideshow Extender Add_slideChanging Event?

Jan 6, 2010

I'm using the Slideshow extender and have a vexing problem that I can't see to solve. The slidehow itself works fine, but I am trying to get the value of the ImageDescriptionLabelID into a javascript variable when the slide changes. Using this code in a javascript function:

[Code]....

It appears that the add_slideChanging event fires BEFORE the image (and accompanying label) change. Is there an event that occurs AFTER the image changes?If not, any ideas on how I can make the number I'm successfully passing in the lblDesc control available to javascript?

View 3 Replies

AJAX :: Populate SlideShow Extender From Database?

May 7, 2015

how can we have the ajax slide show which take the image path from database, instead of define the image path static in service method.

View 1 Replies







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