Rank: Newbie Groups: Member
Joined: 7/15/2009 Posts: 8
|
After installation , when I try to display a page with a eo.calendar. I receive this message "Tag server unknow 'eo:Calendar'" Ligne 11 : <body> Ligne 12 : <form id="form1" runat="server"> Ligne 13 : <eo:Calendar ID="Calendar1" runat="server" ControlSkinID="None" Ligne 14 : DayCellHeight="15" DayCellWidth="31" DayHeaderFormat="Short" DisabledDates="" Ligne 15 : OtherMonthDayVisible="True" SelectedDates="" TitleFormat="MMMM, yyyy"
In the Bin Folder There is the EO.web.dll version 7.0.11.2
In my webconfig
Section assemblies <add assembly="EO.Web, Version=7.0.11.2, Culture=neutral, PublicKeyToken=E92353A6BF73FFFC"/></assemblies>
and in the section <pages> <controls> <add assembly="EO.Web, Version=7.0.11.2, Culture=neutral, PublicKeyToken=E92353A6BF73FFFC" namespace="EO.Web" tagPrefix="eo" />
Into GAC
I tryed to install the version 2 and I received a message about I need a strengt name(name,version and Public key) Then, I have no choice to install the version 1 maybe there is the problem
I'm working with the Visual Studio 2008
I need help to fix it.
Thank you
Martin Raymond
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
If you use Visual Studio 2008, then you should definitely use version 2 (7.0.x.2 instead of 7.0.x.1). ".1" is for .NET 1.1, which goes with Visual Studio 2003.
The reason that you get a strong name error when you try to add the DLL to GAC is because you are trying to add it to the wrong GAC. There is GAC for .NET 1.1 and then there is GAC for .NET 2.0 (Check the window title, if it says ".NET Configuration 1.1", then you are adding into GAC for .NET 1.1). When you try to add version 2 to GAC for 1.1 you will get that error. So you will need to add version 2 to GAC for .NET 2.0.
Note you may not see "Microsoft .NET Framework 2.0 Configuration" in your Administrative Tools menu. In that case you may not have .NET 2.0 SDK. You can download it from Microsoft to have the SDK installed.
Thanks!
|