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
Similar Messages:
Jul 22, 2010
guide me a place to find the Timer control? I jus downloaded the latest version Ajax Control Tool Kit i don't see Timer control.
[IMG]http://i25.tinypic.com/1z1srvl.jpg[/IMG]
View 5 Replies
Jan 12, 2010
i make ajax page , i added to it slide show tooli make the source code for the page like that :
[Code]....
View 6 Replies
Oct 2, 2010
When I use some control of toolkit like watermarkextender the ajax dissable. If I not use any control of tool kit all goes ok. Why Can I use tookkit? I use vs 2008 and dll of version 3.5 of toolkit is loaded correctly.
View 3 Replies
Apr 26, 2010
i install the Ajaxtoolkit but any time i try to use any control in this case tab control give's me this report.
Server Error in '/WebSitetest' Application.
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.
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.Resources.MissingManifestResourceException: 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.
Source Error:
[Code]....
Stack Trace:
[Code]....
View 3 Replies
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
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
Oct 7, 2010
I am trying to insert html pages to MySQL with my Asp.NET project but i am getting error; You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'de Osman patlaması', '', '<div style="text-align: center"> <img src="/i' at line 1
How can i fix that problem my server side code is;
MySqlConnection myCon = new MySqlConnection();
myCon.ConnectionString = ConfigurationManager.ConnectionStrings["MySQLConnectionString"].ConnectionString;
MySqlCommand cmd = new MySqlCommand();
cmd.CommandType = CommandType.Text;
string query = @"INSERT INTO `test`.`posts` (`id`, `author`, `title`, `description`, `content`, `ispublished`, `iscommentsenabled`, `pubDate`, `lastModified`, `raters`, `rating`, `slug`, `tags`, `categories`) VALUES (NULL, '{0}', '{1}', '{2}', '{3}', '{4}', '{5}', '{6}', '{7}', '{8}', '{9}', '{10}', '{11}', '{12}')";
query = String.Format(query, p.author, p.title, p.description, p.content, p.ispublished, p.iscommentsenabled, p.pubDate, p.lastModified, p.raters, p.rating, p.slug, p.tags, p.categories);
cmd.CommandText = query;
cmd.Connection = myCon;
cmd.Connection.Open();
cmd.ExecuteNonQuery();
cmd.Connection.Close();..............
View 2 Replies
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
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
Aug 28, 2010
I have a requirement to show an Exit Popup on one of our processing pages. I am showing the exit popup by registering a client side javascript like
window.onbeforeunload = ShowExitPopUp();
The popup executes fine if you close the window, or try to type in a different URL. However the issue is that my processing page is also performing a "Response.Redirect" on the server side once the process completes. When response.redirect happens the exitpopup also shows up. Is there a way to have the exit popup not show up in that case?
Since my server side code is running through an UpdatePanel, so I have tried registering the following, in an attempt to remove ExitPopup from client side. However this doesn't work since server side redirection happens before end request.
Sys.WebForms.PageRequestManager.getInstance().add_endRequest(RemoveExitPopup);
View 1 Replies
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
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
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
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
Mar 3, 2010
Setting the scene:
My asp.net web application carries a version number which is incremented during every release. We're releasing every week internally for our test team and after four weeks or so to our client.
The question:
I want to include the version number on our application. What methods have you used so that your web app carries the version number? meta tag? simply added it to the footer?
View 5 Replies
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
May 10, 2010
i have been working with devexpress AspxTextbox, in asp.net and c#.net?
initially i was struggling to settext for aspx text boxes,but after that i got a tip that clientinstancename.settext() with custom js properties solve that issue.
now the problem is i have to set the tool tip for the aspxtextboxes to show their text contents ?
View 1 Replies
Jan 20, 2010
I would like to make the build information for the running web application but I dont know where I set or configure this nor do I know how to retrieve this information.
In a project you may set the build information in the file AssemblyInfo.cs under the projects Properties folder. Here is a snippet of the AssemblyInfo.cs file:
[Code]....
But there is no such file for an web application project, so I have to get this information from one of the compiled DLLs that is in the same assembly as my web application then? Or how is this done?
The reason I want this information is because my customer would like to have a webpage within the web application where he could see the current version. This is also nice to have when testing and debugging etc.
View 5 Replies
Apr 6, 2010
i got label on page to show errori got button called "click"if i put click using in Trigger insdie updatepanllet say
<asp.... : controlID="button" event="click">
if error, doesnt show on page,if i dont put in trigger, it show error on page.. wat wrong?
View 2 Replies
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
Feb 14, 2011
I have a textbox, with a RequiredFieldValidator and a ValidatorCalloutExtender. The calloutExtender comes up when there is no text in the textbox, but it does not display the error message from the RequiredFieldValidator. I tested this code in a test app, and it worked. It may have something to do with the content containers? These controls are inside of a web user control, which are inside a Telerik RadDock. The parent page also uses a MasterPage. Here is my code from the usercontrol which contains the validator:
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="WebUserControl1.ascx.cs" Inherits="WebApplication1.UserControls.WebUserControl1" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit"
[code]...
View 1 Replies
Feb 14, 2011
I placed 2 requiredfieldvalidators in my page (well, actually, more like a dozen of them, but only these 2 behave this way) and can not seem to figure out why the error message will not be displayed. The validation function works (the processing code is not run and focus is returned to the first field that fails validation) but no error message.
[Code]....
View 23 Replies
Mar 10, 2011
I have to create a webpage that shows gallery of images in a folder. The folder contains different images and also versions of them (like a basic image of xxx1_v1 and then a modification of it as xxx1_v2 and so on...Also, there are xxx2, xxx3 ....). While displaying these images on the gallery, each thumbnail should show the higher version of the image. For example, if there are xxx1_v1, xxx1_v2 then xxx1_v2 must be on the gallery page. Further, when we click on the higher/later version of an image, it must be redirected to another page which shows the other versions of that image. Should i use AJAX / Jquery .
View 3 Replies
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