-
user1400290
c# asp.net .net telerik sitefinity
I recently Migrated my 3.7 sp4 project to 5.2, but I had issues while doing so. Currently, my user controls are not working after migration in 5.2 project.Below is the code:User Control Code:<%@ Control Language=”C#” AutoEventWireup=”true” CodeFile=”SiteMenu.ascx.cs” Inherits=”UserControls_Nav_SiteMenu” %> <%@ Register TagPrefix=”telerik” Assembly=”Telerik.Web.UI” Namespace=”Telerik.Web.UI” %><asp:SiteMapDataSource ID=”SiteMapDataSource1″ runat=”server” ShowStartingNode=”false” /&
-
Peter Pocket
asp.net localhost sitefinity
I’m currently working on a site that uses sitefinity 3.7. After copying the files to my hard-drive using source safe, I tried viewing the page in my localhost when the following error appeared:Server Error in ‘/’ Application.Could not load file or assembly ‘Telerik.Cms.Engine, Version=3.1.3311.24714, Culture=neutral, PublicKeyToken=85fd314cb21bc432’ or one of its dependencies. The located assembly’s manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)De
-
SixfootJames
sitefinity
I am hoping someone might be able to answer this question on Sitefinity. This happens when we try and save a page after some changes were made. We are trying to work out why this could be happening because this does work on the localhost installation. Our thinking is that when we send the database back to the client to restore, they need to downgrade from from SQL2008 to SQL2000.Here’s the error…Unexpected end of file has occurred. The following elements are not closed: SettingTypeName, BaseSe
-
marc_s
c# asp.net path radgrid sitefinity
I am using Sitefinity 5.1 and RadGrid in this example.I have been troubleshooting one of our pages on development server this morning and I have confirmed that it behaves differently on the page with the styling (template) than on the barebones page (no styling, no scripts etc):The page does not work in Chrome but does work in IE and Firefox The page on a bare-bones page (no template, header, or anything else) works in IE, Firefox and ChromeCode used:Response.Redirect(String.Format(“~/services/s
-
meme
visual-studio-2012 sitefinity
I am working with Sitefinity as a solution in Visual Studio 2012. I’m on a 64bit machine. I just installed Windows Identity Manager as I was getting another error before that and it was related to not having that installed. Now I am receiving this error:Found invalid data while decoding. 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
-
John Conde
sitefinity
I am getting the following error on sitefinity 4.4 SQLDriver not initialized with server version. I checked on sitefinity forums but I cannot find any fix for this issueSQLDriver not initialized with server version.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.InvalidOperationException: SQLDriver not initialized with ser
-
Snapper
javascript events sitefinity
I’ve upgraded a website from 4.4 to 6.0 and found some issues. Some I already solved but I keep getting one error (javascript I suppose) on events module. When I try to preview/create new/publish/save draft I get the following js error:TypeError: startDate is nullUnable to get property ‘getFullYear’ of undefined or null reference Telerik.Web.UI.WebResource.axd, line 329 character 1var range=this.get_rangeView().getRange(); var time=this.get_timeView().getRange(); var startDateTime=new Date(time
-
Dan Sorensen
webforms sitefinity microsoft-ajax sitefinity-5
How do I troubleshoot the following error being thrown by a Microsoft AJAX JavaScript framework method? It is an automatically generated line of JavaScript from a custom User Control in a Web Forms App (Sitefinity 5 CMS)Error Message:Unable to get property ‘FancyBlockDesigner’ of undefined or null referenceHere is the JavaScript that is throwing the error:Sys.Application.add_init(function() {$create(SitefinityWebApp.Esd.TheLab.SampleHtmlEditor.FancyBlockDesigner, null, null, {“Editor”:”propertyE
-
John Saunders
ajax web-services json asmx sitefinity
I am trying to call via ajax a WebMethod hosted in a traditional ASP.Net WebForm code-behind page. Here is the code for the WebMethod:[WebMethod] public static object States() {StateProvince[] states = new StateProvince[] { };ApplicationServiceClient proxy = null;try{proxy = new ApplicationServiceClient();states = proxy.GetStateProvinces();}finally{CloseServiceProxy(proxy);}return states; }The WebMethod works just fine in my stand-alone development environment or if deployed normally to IIS, bu