| Tony Fabian 2005-11-14, 5:54 pm |
| Hi Stefan,
I have a strange problem. I have implementet the EnchancedWebAurhor and it is working perfect except on the InternalLinks\TreeFrame.aspx page where it for some reason complains that the DLL cannot be located.
I have checked that i have entered the correct tags and even copied the file from another solution where the page is work just fine. Same result.
I have checked that the NTFS rights are set correctly on the page itself and on the dll file.
I am running short of ideas. Can you spot the error?
Kind regards
Tony
----------------------------------------------------------------------------------------------------------------------------
Parser Error Message: File or assembly name Microsoft.StefanG.WebAuthorExtensions, or one of its dependencies, was not found.
Source Error:
Line 1: <%@ Register TagPrefix="EnhancedWebAuthor" Namespace="Microsoft.StefanG.WebAuthorExtensions" Assembly="Microsoft.StefanG.WebAuthorExtensions" %>
Line 2: <%@ Page language="c#" Codebehind="TreeFrame.aspx.cs" AutoEventWireup="false" Inherits="Microsoft.ContentManagement.WebAuthor.TreeFrame" %>
Line 3: <%@ Register TagPrefix="WebAuthor" Namespace="Microsoft.ContentManagement.WebAuthor" Assembly="Microsoft.ContentManagement.WebAuthor" %>
Source File: D:\Program Files\Microsoft Content Management Server\Server\IIS_CMS\WebAuthor\Dialogs\
InternalLinks\TreeFrame.aspx Line: 1
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
<%@ Register TagPrefix="EnhancedWebAuthor" Namespace="Microsoft.StefanG.WebAuthorExtensions" Assembly="Microsoft.StefanG.WebAuthorExtensions" %>
<%@ Page language="c#" Codebehind="TreeFrame.aspx.cs" AutoEventWireup="false" Inherits="Microsoft.ContentManagement.WebAuthor.TreeFrame" %>
<%@ Register TagPrefix="WebAuthor" Namespace="Microsoft.ContentManagement.WebAuthor" Assembly="Microsoft.ContentManagement.WebAuthor" %>
<EnhancedWebAuthor:ChannelTree id="channeltree" runat="server">
<ChannelTemplate>
<a href='#' onclick='javascript:WBC_onTreeNodeClicke
d("<%# Container.Channel.UrlModePublished %>"); return false;'>
<%# Server.HtmlEncode(Container.Channel.DisplayName) %>
</a>
</ChannelTemplate>
<PostingTemplate>
<a href='#' onclick='javascript:WBC_onTreeNodeClicke
d("<%# Container.Posting.UrlModePublished %>"); return false;'>
<%# Server.HtmlEncode(Container.Posting.DisplayName) %>
</a>
</PostingTemplate>
</EnhancedWebAuthor:ChannelTree>
|