AJAX :: Getting Error / Ensure The Correct Version Of The Scripts Are Referenced - How To Fix It

Jun 14, 2010

We have upgraded recently from Visual Studio 2008 to Visual Studio 2010. One of the upgrades has to do with the AJAX libraries.

On the initial project (SV2008) the AjaxControlToolkit.dll used was:

Product Version:version: 1.0.10920.0
Date Modified: 28/09/2007

The current one, used in the VS2010 project is:

Product Version:
3.0.31106.0
Date Modified: 09/03/2010

The project compiles fine but once we access some web pages, we get numerous error messages with the first one being:

Message: AjaxControlToolkit requires ASP.NET Ajax 4.0 scripts. Ensure the correct version of the scripts are referenced. If you are using an ASP.NET ScriptManager, switch to the AjaxScriptManager in System.Web.Ajax.dll, or use the ToolkitScriptManager in AjaxControlToolkit.dll.

View 8 Replies


Similar Messages:

AJAX :: 3.5 Script Manager - Error "Ensure The Correct Version Of The Scripts Are Referenced"

Mar 24, 2010

I am in the process of migrating the ASP.Web Application from .NET framework 1.1 to 3.5. I installed the VS 2008 (framework 3.5 SP1) and was able to rebuild the ASP.NET web app from 1.1. I downoladed the AJAX Toll Kit library from codeplex [URL] I was able to add the AJAX Toolkit tab in my VS 2009 tool box. I am using the AutoComplete serach extender which works fine when I use the Ajax Tool Kit Script manager. When I use the Ajax Extension Script Manager in place of Ajak ToolKit Script manager I get an error "Please let me know why AutoComplete Search Extender is not working with the Ajax Extension Script Manager.

AjaxControlToolkit requires ASP.NET Ajax 4.0 scripts. Ensure the correct version of the scripts are referenced. If you are using an ASP.NET ScriptManager, switch to the AjaxScriptManager in System.Web.Ajax.dll, or use the ToolkitScriptManager in AjaxControlToolkit.dll.

View 2 Replies

AJAX :: AjaxControlToolkit Version Conflict / Error

Mar 12, 2010

All my web applications are using AjaxControlToolkit 1.0 version. But I have one third party website that is using AjaxControlToolkit 3.5. When I run that third party website I got the following error.

The type 'AjaxControlToolkit.DropDownExtender' exists in both 'c:WINDOWSassemblyGAC_MSILAjaxControlToolkit3.5.11119.20050__28f01b0e84b6d53eAjaxControlToolkit.dll' and 'c:WINDOWSassemblyGAC_MSILAjaxControlToolkit1.0.20229.20821__28f01b0e84b6d53eAjaxControlToolkit.dll'

I do have assembly reference at server level web.config

<add assembly="AjaxControlToolkit, Version=1.0.20229.20821, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e" />

View 9 Replies

AJAX :: Got Error While Using Toolkit With Web.extensions Version 1.0

Sep 22, 2010

the reason i posted this question is that i just added ajax toolkit in my visual studio 2005 and i installed ajax web extension version 1; downloaded from microsoft website named "ASPAJAXExtSetup" but when i added ajax object in my web form i ve gotten this error: "Error 1: Indirect reference is being made to assembly System.Web.Extensions version 3.5.0.0, which contains 'AjaxControlToolkit.CalendarExtender'. This Project references a prior version of System.Web.Extensions version 1.0.61025.0. To use 'AjaxControlToolkit.CalendarExtender', you must replace the reference to System.Web.Extensions with version 3.5.0.0 or higher. C:inetpubwwwrootAJAXEnabledWebSite1Default.aspx 1 1 C:...AJAXEnabledWebSite1"

is there any option to upgrade ajax web extension version 1 to upper without installing visual studio 2008 and .net 3.5? or any other solution?

View 5 Replies

AJAX :: Error While Adding Reference To Latest Version Of AjaxControlToolkit

Sep 24, 2010

I am a bit new to ASP.Net Ajax and as such new to Ajax itself. I have a site which uses ASP.Net Ajax. It used the version AjaxControlToolkit version 3.0.30512.0. I have now changed it to version 3.5.40412.2 by deleting the old reference and adding a reference to the latest one . I build the soultion and everything appears fine witjhout any errors. But the site fails to load showing a yellow page with the message AjaxControlToolkit Version="3.5.40412.2" missing reference to 'AjaxControlToolkit.ExtenderBase.Base Scripts.js.BaseScripts.js'. What does this mean ?

View 2 Replies

AJAX :: CascadingDropDown - Method Error 500 Only For One DropDown And Service Path Is Correct

May 7, 2015

I have 3 table in database

1-state

Id state
1 USA
2 UK

2-City

Id name state
1 Canada USA
2 London UK

3-Region

Id regionname cityid
1 01 Canada
2 02 London

and I have 3 DropDownList that refer below thread [URL] ...

I use cascadingdropdown for these 3 dropdownlist below are codes:

AND

[WebMethod]
public CascadingDropDownNameValue[] GetCountries(string knownCategoryValues)
{
string query = "SELECT state FROM stateTest";
List countries = GetData(query);
return countries.ToArray();
}

[Code] ....

1-DDLstate

2-DDLcity

3-DDLregion

at first I should select Item from DDLsate then DDlcity and at the end I should select Item from DDLregion

above code work correctly for ddlstate and ddlcity but it doesn't work for ddlregion...

I mean when I select Item from ddlcity in ddlregion shows:[Metod error500]

View 1 Replies

AJAX :: Using Tool Kit Version 1.0.61214.0 - Some Pages Show Script Error?

Nov 3, 2010

I'm using ajax tool kit version 1.0.61214.0. My application is working fine in locally.But when i publish it to server, some pages show script error like

'Error: window.debug is undefined
Source File: http://server name/virtual directory/ScriptResource.axd?d=BoOwWOMbdZ0NTKRLPFlmapAwvOTsF5ybQVNY8WbDTRUBO6b9C1HjtFGo68m5YPI4r2aWxwL4qG-240z5helIdQ2&t=634230057813423350
Line: 107'

I noticed one thing, most of these error come from pages using ajaxtoolkit:AnimationExtender.

View 2 Replies

AJAX :: Ajaxtoolkit Version 4 - Error 'The Controls Collection Cannot Be Modified Because The Control Contains Code Blocks"

Sep 23, 2010

I was working on an asp.net 3.5 website and used ajaxtoolkit in it and when I use it in my page it was registered as below

<%@ Register assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" tagprefix="cc1" %>

and it was working well even After I upgraded my wevbsite to .net version 4 but when I started a new website from scratch in vs2010 using .net4 when I use ajax toolkit in this new site it is registered as folowing

<%@ Register assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" tagprefix="asp" %>

and when I run the page I get the error The Controls collection cannot be modified because the control contains code blocks (i.e. <% ... %>) I don't Know what is the reason for this. I noticed another thing. in my old website I was using thckbox script by using the files common.js, jquery-1.3.2.js,jquery.thickbox.js and puting them in a Javascript folder ad then registering them in Script manager as following

<asp:ScriptManager ID="ScriptManager1" runat="server">
<Scripts>
<asp:ScriptReference Path="~/Javascript/jquery-1.3.2.js" />
<asp:ScriptReference Path="~/Javascript/jquery.thickbox.js" />
<asp:ScriptReference Path="~/Javascript/common.js" />
</Scripts>
</asp:ScriptManager>

this was working well also but in my new site the jquery file version was jquery-1.4.1.js but also I added the old version f the javascripts files in the built in Scripts folder that is created by default b the new site and followed the same way in registering them in the script managerchange the JavaScript folder to the built in folder Scripts

<asp:ScriptManager ID="ScriptManager1" runat="server">
<Scripts>
<asp:ScriptReference Path="~/Scripts/jquery-1.3.2.js" />
<asp:ScriptReference Path="~/Scripts/jquery.thickbox.js" />
<asp:ScriptReference Path="~/Scripts/common.js" />
</Scripts>
</asp:ScriptManager>

but this doesn't work also in the new site I think that there is something diffirent in the 2 case which leads to this change in performance I wish your support and advice about how to solve this matter

View 4 Replies

.NET XML As Datasource Error - Ensure That Your Data Source Has Content?

Mar 7, 2010

I am trying to use an XML as a datasource in ASP and then display it as a datagrid. The XML has the following format:

<?xml version="1.0" encoding="UTF-8"?>
<people type="array">
<person>[code]....

When I try to run the simple page I receive the following error

Server Error in '/' Application.the data source for GridView with id 'GridView1' did not have any properties or attributes from which to generate columns. Ensure that your data source has content.

Here is my page code

<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="Default.aspx.vb" Inherits="shout._Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">[code]....

View 2 Replies

Forms Data Controls :: Error - Delete A File Referenced In Gridview Row?

Apr 1, 2011

how remove dis Error

[Code]....

html Code

[Code]....

View 4 Replies

AJAX :: To Ensure User Enters All Of The Person's SSN?

Feb 4, 2011

I'm working with the AJAXControlToolkit in an ASP.NET 3.5 application. I've got a textbox on the page to take the person's social security number, and I've put an masked edit extender and an masked edit validator, force the user to enter the whole SSN, but it doesn't work. I'm not sure what I'm doing wrong, or have left out. Here's the relevant code:

[Code]....

View 1 Replies

AJAX :: The Requested Script Resource 'Common.Common.js' Requires Version 'ControlToolkit, Version=4?

Aug 11, 2010

I have a solution I'm working on in VS2010 Professional, using ASP.NET 4.0 with the AJAX Toolkit.This has been working fine, but when I started it up today, I got the runtime exception shown above. This exception occurs on any page with a control from the toolkit.Sometimes when I load a page, I get an exception "Could not load file or assembly 'System.Windows, Version=2.0.5.0, Culture=neutral, ublicKeyToken=7cec85d7bea7798e' or one of its dependencies. The system cannot find the file specified." If I then reload the page (without making any changes), I then get the exception shown in the subject line.I tried dragging an AJAX Toolkit control from the toolbox onto a page, and then deleting it, and that worked - once. The next time I tried the page (or any other), I got the exception again. Dragging a control out didn't help this time.

View 5 Replies

AJAX :: Getting Error Could Not Load File Or Assembly "AjaxControlToolkit" Version=1.0.20229.20821

Mar 3, 2010

I am using AjaxControlToolkit.dll 1.0.20229. For compiling my code in my DotnetNuke module. When I compile our code and upload it on Server Dotnetnuke application which is having latest 3.x version of AjaxControlToolkit.dll. I get following error. I am not compiling my code to a specific version of AjaxControlToolkit.dll.......................

View 2 Replies

Web Forms :: Getting Error - Input String As Not In A Correct Format Error

Feb 21, 2011

I am getting the below error when tryingn to do an Insert. Any words of wisdom would be great:

Input string was not in a correct format.

Description:An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.FormatException: Input string was not in a correct format.

Source Error: [Code]....

I am using the ErrorLbl to capture any errors.

View 5 Replies

Configuration :: Getting An Error "Parser Error Message: Could Not Load File Or Assembly 'System.Web, Version=4.0?

Aug 25, 2010

I have created an application which runs fine in VS2010.Now i am trying to host that application using inetmgr.When i try to browse the page from inetmgr content view then i get the "Parser Error Message: Could not load file or assembly 'System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified".If i browse the page from VS i am able to do it.I am not able to host the app. may be the reason is the above stated error.

View 1 Replies

AJAX :: Server Control - Defined In An Assembly That Is Not Referenced?

Sep 28, 2010

I have created a server control for my web page... I have decided to add an ajax popup extender (after creating the control, which builds and works fine.) After I add the AjaxControlToolKit reference I add the following:

[Code]....

I get this error when I add it:"The type 'System.Web.UI.ExtenderControl' is defined in an assembly that is not referenced. You must add a reference to assembly 'System.Web.Extensions, "I googled the error and it says to add something inside the web config... I do not have a web.configfile inside the server control.

View 3 Replies

AJAX :: The Script 'Timer.js' Has Been Referenced Multiple Times?

Aug 16, 2010

I am having a problem with ajaxcontroltoolkit 3.5. I am getting the following error

"Microsoft JScript runtime error: Sys.InvalidOperationException: The script 'Timer.js' has been referenced multiple times. If referencing Microsoft AJAX scripts explicitly, set the MicrosoftAjaxMode property of the ScriptManager to Explicit."

I have migrated ajax web app from 2.0 to 3.5 and have changed ScriptManager to ToolkitScriptManager.

View 4 Replies

Forms Data Controls :: Error - "Input String Was Not In A Correct Format." Error When Trying To Sort Gridview

Jan 21, 2011

I have gridview control that has data binded by using EF. Whenever I try to sort my gridview I get this error: "Input string was not in a correct format." This error points to the following line of code: "int index = Convert.ToInt32(e.CommandArgument);"

AdministracijaVrstaAktivnosti.aspx

[Code]....

AdministracijaVrstaAktivnosti.cs

[Code]....

I'm not sure what do I have to fix if I want to sort the columns.

If I bind the data manually what is the code for codebehind to allow sorting for particular columns.

View 3 Replies

MVC :: MVC 3 RC 2 Version / Getting Error

Dec 20, 2010

I am updating a MVC 3 Beta working project to MVC 3 RC2. I have the following Assemblies:

System.Web.Mvc (3.0.11209.0)
System.Web.Helpers (1.0.11209.379)
System.Web.Razor (1.0.11209.379)
System.Web.WebPages (1.0.11209.379)
System.Web.WebPages.Razor (1.0.11209.379)
Microsoft.Web.Infrastructure (1.0.11209.379)
Microsoft.Web.Mvc (3.0.10714.0)

I got the Microsoft.Web.Mvc from the MvcContrib project which I am already using:

MVCContrib (3.0.0.99)

When I run my MVC 3 RC2 project I get the following error:

----------------------------

StructureMap configuration failures:

View 4 Replies

WCF / ASMX :: Best Way To "ensure" That A Web Service Is Only Called From AJAX On A Specific ASPX Page?

Oct 26, 2010

I have an ASPX page which hosts a Custom Control. That custom control needs to call an ASMX web service. I would use a PageMethod, if the fact that I'm calling from within a Custom Control didn't preclude that. I'm looking for some guidance on the most effective way to try and lock down the ASMX call such that it will only succeed for my users calling it from my ASPX page - and not for anyone trying to call it from elsewhere. I've seen various ideas around session variables and so on.

View 5 Replies

Input String Not In Correct Format - Error

Apr 8, 2010

Is it legal to define a default value for a parameter the way I am in the code below? It keeps throwing an "Input string was not in a correct format." error for me. Is there a different way I should be doing this?

<asp:LinqDataSource ID="lds_numbers" runat="server" ContextTypeName="nrm.prop.myDataContext"
TableName="Sources" Where="myNumber== @myNumber" EnableDelete="True"
EnableInsert="True" EnableUpdate="True">
<WhereParameters>
<asp:Parameter DefaultValue='<%= this.StateItems["myNumber"] %>' Name="myNumber" Type="Int32" />
</WhereParameters>

View 2 Replies

Error: Input String Was Not In A Correct Format?

Oct 26, 2010

i wants to convert string to long , below the code, i try to convert string type to long

but it throws the error: Input string was not in a correct format.

long works= Int64.Parse((Label2.Text.ToString()));
string kannan = RupeesIntoWords.ConvertRupeeToWord(works);

View 1 Replies

Wrong Version And Unhandled Exceptions Error / How To Fix It

Jun 11, 2010

I didn't want to post anything before i search and upgrade to the latest ajax3.5I copied the zip extracted it in a location and then on vs2008 i added a toolbox and i imported the jaxcontroltoolkit.dll(the very first on the folder).

I got the controls and all is fine until then.

The problem (i previous had with the beta version) stayed.

I did not handle an exception and vs prompted me for the location of accordioncontrol.cs (i don't clearly remember the control), saying there is no source code and i should provide one.I clicked cancel (there is clearly no accordion .cs control on the zip) and the program got the exception on the web page.Ok.

Now everytime i put a breakpoint on the page and it reaches the last end sub it prompts me this "There is no source code available for the current location."I can hit F5 and pass this, however if i hit F11(next statement) it prompts me for the location of the picture i include here. I remember finding the cs somewhere for the beta and included it and it prompted me for wrong version or something on the unhandled exceptions so i have forgotten the error (because i usually handle all my exceptions so i didn't have any for a while).

View 39 Replies

AJAX :: How To Download And Install AJAX Toolkit Version 1.0.20229

Jun 23, 2010

Because I have VS 2005, I need to download and install AJAX Toolkit version 1.0.20229, but I an't find it anywhere. Does anyone have a link I could use for this download?

View 2 Replies

Web Forms :: Error - Input String Was Not In Correct Format

May 7, 2015

I got this error: Input string was not in a correct format.

Source Error: 

Line 63: protected void btn_save_add_Click(object sender, EventArgs e)
Line 64: {
Line 65: pcd.Pro_Comp_ID = Convert.ToInt32(txt_prod_of_compID_add.Text);
Line 66:
Line 67: //int companyId = Convert.ToInt32(ddl_choose_companyName.SelectedValue);
 
I revise 'Pro_Comp_ID' in sql and .net it all of datatype 'int' where is the error?

View 1 Replies







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