AJAX :: Bad ControlToolkit Setup In SharePoint 2010?
Jul 16, 2010
I am having issues with the AjaxControlToolkit.I started with the 3.5 version and backed up hoping for some love but I am still stuck in quiet desperation trying to meet my impossible deadline.I have changed my masterpage to use the ControlToolkitScriptmanager.System.Web.Extensions references v3.5.0.0 throughout the config.Version of the toolkit referenced in the VS2010 webpart project verified as 3.0.30930.28736
The issue is that no matter what control or extender I try to use I receive the following error:
The base class includes the field '(control/extender name)', but its type (AjaxControlToolkit.(control/extender)) is not compatible with the type of control (AjaxControlToolkit.(control/extender)).
If it would help I would post the entire web.config.If anyone has a working setup with a version of the toolkit I would love to get a copy!I will have to get Silverlight going next.
GAC:Microsoft (R) .NET Global Assembly Cache Utility.Version 4.0.30319.1
Copyright (c) Microsoft Corporation.All rights reserved.
The Global Assembly Cache contains the following assemblies:
ajaxcontroltoolkit, Version=3.0.30930.28736, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e, processorArchitecture=MSIL
Number of items = 1
--
MasterPage (excerpt):
<%@ Register TagPrefix="asp" Namespace="AjaxControlToolkit" Assembly="AjaxControlToolkit, Version=3.0.30930.28736, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e" %>
[code]...
Environment:Visual Studio 2010 SharePoint 2010 (clean install) Windows Server 2008R2
View 8 Replies
Similar Messages:
Mar 2, 2011
I've tried to use Ajax Control Tool Kits on SharePoint 2010 Web Site, but Im having some trouble with registration. I've searched a lot on google for a solution. I've found some ways, but my problem is not solved. When I open my web site, still getting registration error.The problem is registration of Ajax Tool Kit. Here is my steps.1 - Downloaded Ajax Control Tool Kit latest version.2 - Added following line to my page
<%@ Register Assembly="AjaxControlToolkit, Version=3.0.30930.28736, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e" Namespace="AjaxControlToolkit" TagPrefix="ajaxToolkit" %>
3 - Added following line to my master page (v4.master)
<%@ Register Assembly="AjaxControlToolkit, Version=3.0.30930.28736, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e" Namespace="AjaxControlToolkit" TagPrefix="ajaxToolkit" %>
4 - Replaced this tag
<asp:ScriptManager>
with
<ajaxToolkit:ToolkitScriptManager>
but problem not solved.. Still getting same registration error. I need your suggestions about implementing Ajax Control Tool Kits on Share Point 2010.
View 1 Replies
Jun 15, 2010
Following error comes when creating a WebPart In sharePoint 2010 Server.
Web Part Error: Unhandled exception was thrown by the user code wrapper's Execute method in the partial trust app domain: System.Web.HttpUnhandledException: Exception of type 'System.Web.HttpUnhandledException' was thrown. ---> System.TypeLoadException: Could not load type 'Microsoft.SharePoint.WebControls.SPGridView' from assembly 'Microsoft.SharePoint, Version=14.900.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c'. at ListMenuSample.ListMenuSample.ListMenuSample.CreateChildControls() at System.Web.UI.Control.EnsureChildControls() at System.Web.UI.Control.PreRenderRecursiveInternal() at System.Web.UI.Control.PreRenderRecursiveInternal() at System.Web.UI.Control.PreRenderRecursiveInternal() at System.Web.UI.Control.PreRenderRecursiveInternal() at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) --- End of inner exception stack trace --- at System.Web.UI.Page.HandleError(Exception e) at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest() at System.Web.UI.Page.ProcessRequest(HttpContext context) at Microsoft.SharePoint.UserCode.SPUserCodeWebPartWrapper.ExecuteHttpRequest(SPUserCodeWebPartHttpRequestContext webPartExecutionContext, SPUserCodeWebPartHttpResponse httpRequestResponse) at Microsoft.SharePoint.UserCode.SPUserCodeWebPartWrapper.Execute(SPUserCodeExecutionContext executionContext) at Microsoft.SharePoint.UserCode.SPUserCodeApplicationHostAppDomainRef.Execute(Type userCodeWrapperType, SPUserCodeCachedAssemblyGroup userAssemblyGroup, Guid siteCollectionId, Byte[] binaryUserCodeToken, Byte[] proxyOperationToken, SPUserCodeExecutionContext executionContext)
View 1 Replies
Sep 18, 2011
how to integrate my asp.net application to sharepoint 2010?
View 3 Replies
Jun 22, 2010
I am currently working on creating a ModalPopUp for SharePoint Web Part.I am facing compatibility issues with ModalPopupExtender (with IFrame).
What are the other options available in SharePoint 2010 or ASP.NET for getting a Modal Popup?
Note: I have tried ModalPopupExtender and OpenModalDialog.
View 4 Replies
Mar 21, 2011
using SqlProfileProvider with sharepoint 2010
View 2 Replies
Jun 29, 2010
Is a sharepoint 2007 webpart likely to work on 2010 without any modification? If not, what are the main areas that would require modification?
View 3 Replies
Feb 15, 2011
I've searched some FREE Controls, Templates, WebParts, Themes for SharePoint 2010, and its really hard to find good and free examples. Turned back into StackOverFlow and there is no Community Wiki for it. I want to open a Community Wiki about All Free SharePoint 2010 Controls, Templates, Themes, WebParts, etc... to collect them all in one topic.For example, there is a site about MOSS 2010 Free Controls in here. This site containt most MOSS versions controls, web parts. I want SO Users to add most usefull web sites for SharePoint 2010 Developers such as Free controls, themes, tools, etc.
View 1 Replies
Mar 8, 2011
I am working on SharePoint 2010. I need to send email with attachments using aspx and c# code.
how to do this?
View 2 Replies
Aug 2, 2010
Suppose I created a custom web application that consists of: several assembly DLLs: web app, business logic, data services multiple aspx pages and ascx custom controls that use them custom configuration section custom HTTP module. More or less the usual stuff. I would like to deploy it to a particular sharepoint site under a certain subfolder. So if I access my sharepoint site via [URL] (because I'm not using sites/some_site) I'd like my application to be available under [URL]
I could manually add a virtual folder (not application because I would need to access some Sharepoint site's data) to my sharepoint site in IIS and manually edit site's web.config file to register my HTTP module and add my custom configuration section as well either putting my DLLs into GAC or put them in the _app_bin (so I don't have problems with CAS), but I don't think that's a good thing to do, because this web application may get deployed in an environment where this shouldn't/couldn't be possible. So I figured I could build a WSP using Visual Studio 2010 and deploy it that way. But I don't have enough experience doing that.
I created a new sharepoint 2010 project. Is there a way I could add all non-executable application files (aspx, ascx) at once? I've seen the advanced tab of the WSP package where I can add my DLLs either to bin folder or GAC. I don't know whether I would also have to add any safe control and register certain classes?So I suppose I need some pretty detailed and explanatory guidance here.
View 1 Replies
Oct 13, 2010
I would like to create and deploy an ASP.NET web form on SharePoint server which can create document in SharePoint list (or library). Since I'm not experienced in both these technologies so would appreciate if someone guides me to the right tool. Should I use Visual Studio or SharePoint designer ? Also, I was reading an article on MSDN about "Deploying ASP.NET Web Applications in the Windows SharePoint Services 3.0 _layouts Folder". Is it the best practise or should I go with webpart/solution based deployment?
View 1 Replies
Aug 1, 2010
As part of our branding of Sharepoint 2010, we'll be modifying some custom HTML menu's based on database and user permissions.
To do this, we are looking at the use of code-behind in a custom Sharepoint 2010 master page.
The only reference I can find to creating a code-behind file for sharepoint 2010 is this blog post series. The issue I have with this is that it's using the Visual Studio 2010 Sharepoint integration, which has the genius feature of requiring a local instance of an entire Sharepoint site. This isn't something that I can do/get.
This is the MSDN for code-behind master pages in Sharepoint 2007. I'm assuming it's similar but I can't find anywhere that describes it as such.
Is deploying a code-behind for a custom master page the same as in Sharepoint 2007 or does anyone have any experience doing this?
View 1 Replies
Apr 30, 2010
I'm having trouble with a web application in IIS 6.0 that doesn't seem to be able to run Ajax Control Toolkit that is in the Global Assembly Cache. I thought I had installed it correctly using GACUTIL /I etc., but perhaps I am misunderstanding the process. Is there more to it than just running GACUTIL? Is there a custom installer that I should be using? The web application complains that it cannot find System.Web.Ajax ... is this a separate dll download? If so, where would I get System.Web.Ajax 3.0.31106.0 , there doesn't seem to be a download available on the Codeplex pages.
I currently have the following showing as installed in my GAC:
AjaxControlToolkit 3.0.31106.0
System.Web.Extensions 3.5.0.0
System.Web.Extensions.Design 3.5.0.0
where I am going wrong, do I have the wrong versions of the System.Web.Extensions dll ?
View 1 Replies
Dec 29, 2010
I was trying to use CssClass="WindowsStyle" with the following CSS. Its working fine if WindowsXP theme is selected but when the theme is changed it looks odd (different from other controls).
I wish to have the ComboBox similar to the style used by other controls. Please give me the solution for this issue.
I understand the issue is with the button(background-image: url(../images/windows-arrow.gif);) but what could be the alternate solution?CSS used
[Code]....
View 7 Replies
Aug 18, 2010
can any one tell me how to use events in ajaxcontroletoolkit. if posible give me example code.
View 2 Replies
Apr 3, 2010
I know this issue has been up here before, but I could not find any answer for it.Is there anyway to add a custom button / control (dropdown or whatever) for H1, H2 tags to use with the HTMLEditor.Where can I add such funtionality? Is it possible to use some custom overriding i a separate .cs class.Please provide some example how to do this.
View 2 Replies
Oct 23, 2010
When I tried to deploy the project using DotNet 2.0 using VS2010, it failed and no error message. I make sure all the Framework checkboxes have 2.0 checked. In the prerequisies window, I only checked the installer 3.1. In the Detected Dependencies, The Microsoft .NET Framework is 2.0. The development and target PCs are both XP - SP3. When I unpack the .msi file in the target PC and run the application, it crashed.The only way to make that work is to use VS2005 to perform the setup. Of course, copying the files over to the target PC directory works. So, the VS2010 setup is unpacking something at the target that makes it crash. VS2010 fixed the code-behind fatal bugs and I cannot go back to VS2005 or VS2008. I also noticed that you need to install 3.5 before you can use 2.0 in VS2010... Anybody knows what is going on ?
View 3 Replies
Jan 31, 2011
i got this error while installing vs 2010 setup.anybody have any idea why this problem occured?
CMsiComponent::Install() expects the setup file for Microsoft Application Error Reporting, but the file failed verification.
ISetupComponent::Pre/Post/Install() failed in ISetupManager::InternalInstallManager() with HRESULT -2147467259.
[2] DepCheck indicates Microsoft Application Error Reporting is not installed.
[2] DepCheck indicates VC 9.0 Runtime (x86) was not attempted to be installed.
View 2 Replies
Jan 20, 2011
I have the following code which works well on my local machine, but when I deploy it to Sharepoint 2010 the jquery doesnt work... the calender control doesnt pop up when the web page is added to Sharepoint.
[Code]....
View 3 Replies
Nov 12, 2010
We have to integrate an SSRS report in sharepoint.When we will click on the report it should open in a custom aspx page and not under Report viewer.
View 1 Replies
Mar 8, 2011
I am working on sharepoint server 2010. I want to add an option to
Site
Librart Tools ribbon
Documents
Share & Track
By default a link called "E-mail a Link". How can i add custom link by using feature enabling programatically.....?
View 1 Replies
Jul 12, 2010
I am wanting to display an excel 2010 document in an asp.net web application. This document uses the new slicer functionality which I want to be available to the user.I know that excel 2010 docs can be used within sharepoint by inserting a web part which uses exceservices.But can it be achieved without sharepoint? Or can it be achieved using the the excelservices API to get the document from shreapoint and then somehow get it to the browser in .net?
View 1 Replies
Nov 10, 2010
I'm running ASP.NET 3.5 and using the AjaxControlToolkit.dll version 1.0.20229.42809 (reference locally in the in). This works fine on my machine. When I deploy to a server and the DLL in the bin is replaced with a newer version such as 3.0.30930.28736 I get the following error:
Could not load file or assembly 'AjaxControlToolkit, Version=1.0.20229.42809, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e' or one of its dependencies ...
This is fixed by using the bindingRedirect in the Web.config.
<dependentAssembly>
<assemblyIdentity publicKeyToken="28f01b0e84b6d53e" />
<bindingRedirect oldVersion="1.0.20229.42809" newVersion="3.0.30930.28736" />
</dependentAssembly>
I like to know why ASP.NET doesn't automatically use the newer version of AjaxControlToolkit and needs the bindingRedirect to force it? I thought these DLLs are built to be backward compatible?
View 1 Replies
Mar 2, 2011
I have a number of .NET websites that I have to FTP to the same server from time to time. They all make use of AjaxControlToolkit.dll.Is there a way I can register AjaxControlToolkit.dll on the server somehow so I don't need to keep FTPing AjaxControlToolkit.dll to the server for each of the websites that gets built/published.
View 2 Replies
Nov 24, 2010
How do I remove the following error meassege:Unable to update auto-refresh reference 'ajaxcontroltoolkit.dll' , warning message error reads:
Warning 1 Unable to update auto-refresh reference 'ajaxcontroltoolkit.dll'.
Cannot find assembly 'C:UsersadminAppDataLocalMicrosoftVisualStudio9.0ProjectAssembliespobyanwo01AjaxControlToolkit.dll'.I:.... ajaxcontroltoolkit.dll.refresh
View 7 Replies