I just downloaded the 12.2 Version release and upgraded a solution from 12.2.20122.2014 to 12.2.20122.2075. I did this to see if some IE 9 scripting errors (not showing up on IE 8 or on Firefox 10.X and great) get repaired. The utility ran successfully but now my proejct will not run and I've tried all morning to get it back.
I am getting an error in RE to multiple versions being found of WebDataTree (the first page rendered for Navigation):
Compiler Error Message: CS0433: The type 'Infragistics.Web.UI.AjaxIndicator' exists in both 'c:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\root\1ff7be39\ca621514\assembly\dl3\4a8748aa\68002783_c803ce01\Infragistics4.Web.v12.2.DLL' and 'c:\WINDOWS\Microsoft.NET\assembly\GAC_MSIL\Infragistics4.Web.v12.2\v4.0_12.2.20122.2075__7dd5c3163f2cd0cb\Infragistics4.Web.v12.2.dll'
Any ideas??
Hello ksorrell73,
Thank you for the update. If you have any further questions regarding this matter, please feel free to contact me.
Sincerely,
Tsanna
Finally got it working!
Here is the content of the user control (that worked prior to upgrade):
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="NavigationUserControl.ascx.cs" Inherits="KMInfoPostings.UserControls.WebUserControl1"%>
<%@ Register Assembly="Infragistics4.Web.v12.2, Version=12.2.20122.2075, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" Namespace="Infragistics.Web.UI.NavigationControls" TagPrefix="ig"%>
<asp:XmlDataSource ID="XmlDataSource1" runat="server" ></asp:XmlDataSource>
<script type="text/javascript"" id="UPClientScript">
function WebDataTree1_NodeClick(sender, eventargs) {
__doPostBack("updContent", ');
}
function WebDataTree1_SelectionChanged(sender, eventargs) {
__doPostBack("updContent", '');}
</script>
<ig:WebDataTree ID="WebDataTree1" runat="server" Height="100%" Width="100%" DataSourceID="XmlDataSource1" InitialExpandDepth="1" OnDataBound="WebDataTree1_DataBound" >
<ClientEvents NodeClick="WebDataTree1_NodeClick" SelectionChanged="WebDataTree1_SelectionChanged"/>
<DataBindings>
<ig:DataTreeNodeBinding DataMember="SiteMap" TextField="Title" ValueField="URL" NavigateUrlFields="URL"/>
<ig:DataTreeNodeBinding DataMember="element1" TextField="Title" ValueField="URL" NavigateUrlFields="URL"/>
<ig:DataTreeNodeBinding DataMember="element2" TextField="Title" ValueField="URL" NavigateUrlFields="URL"/>
<ig:DataTreeNodeBinding DataMember="element3" TextField="Title" ValueField="URL" NavigateUrlFields="URL" />
</DataBindings>
</ig:WebDataTree>