html >> Parser Error message

by har_zo » Tue, 10 Jan 2006 23:13:31 GMT

Beginner in Dreamweaver

I have just started to learn dreamweaver and databases from Sean R. Nicholson
book but I encountered problem that I cannot solve. So is there anyone who can
help?

Message:

Description: An error occurred during the parsing of a resource required to
service this request. Please review the following specific parse error details
and modify your source file appropriately.

Parser Error Message: Could not load file or assembly 'DreamweaverCtrls,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=836f606ede05d46a' or one of
its dependencies. The system cannot find the file specified.

Source Error:
<%@ Register TagPrefix="MM" Namespace="DreamweaverCtrls"
Assembly="DreamweaverCtrls,version=1.0.0.0,publicKeyToken=836f606ede05d46a,cultu
re=neutral" %>
WRN: Assembly binding logging is turned OFF.
To enable assembly bind failure logging, set the registry value
[HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1.

Thanks



Similar Threads

1. Parser Error Message: Could not load type - Please HELP

2. Parser Error Message in Dreamweaver 8 with WinXP + SP2

Can anyone help me with this?

System:

Windows XP (SP2)
Dreamweaver 8
Deployed Supporting Files: Yes
Problem still exist

Parser Error Message: Could not load file or assembly
'DreamweaverCtrls, Version=1.0.0.0, Culture=neutral,
PublicKeyToken=836f606ede05d46a' or one of its dependencies. The system
cannot find the file specified.

Regrads,


Hassan

3. Parser Error Message: Could not load file or assembly 'DreamweaverCtrls - Dreamweaver

4. Parser Error Message: Could not load type 'WebApplication1.Global' -- when converting to ASP 2.0 on server only...

5. Parser Error - ASP

6. Site Template - Any Internet Explorer XML Parser errors?

7. always parser error with DreamweaverCtrls - Adobe Dreamweaver

8. ASP.NET nested controls parser error

I'm having a problem in getting a nested DataList to work: I get a parser error 
in the below code at the 2nd (nested) <asp:DataList tag.  It complains that 
"The server tag is not well formed".   It seems to have a problem with the 
DataSource as: ="<%# DataBinder.eval(Container.DataItem, "GeographicArea") %>". 
  TIA for any help.

       <form runat="server">
         <asp:DataList id="dlprofslist" 
          runat="server" 
          RepeatColumns="1" 
          RepeatDirection="Vertical" 
          RepeatLayout="Flow" 
          DataSource="<%# spGeog.DefaultView %>" >
           <ItemTemplate>
 		    <b><%# spGeog.FieldValue("GeographicType", Container) %></b><br />
 			<asp:DataList runat="server" 
 			 id="arealist"
 			 RepeatColumns="1" 
 			 RepeatDirection="Vertical" 
 			 RepeatLayout="Flow"
 			 DataSource="<%# DataBinder.eval(Container.DataItem, "GeographicArea") %>" >
 			 <ItemTemplate>
 			      <%# DataBinder.eval(Container.DataItem, 
"GeographicArea") %>
 			 </ItemTemplate>
 			</asp:DataList>
 		  </ItemTemplate>
         </asp:DataList>
       </form>