Skip to main content
Participant
October 16, 2006
Question

Parser Error

  • October 16, 2006
  • 2 replies
  • 367 views
I am attempting to use my localhost as my testing are for the first time and I am receiving a parser error. I have reinstalled IIS on my Windowns XP Pro PC and I then reloaded .NET Framework 1.1 and .NET Framework 2.0. I also loaded all the updates.

When I attempt to run an .aspx page that contains database resulst, I receive "File or assembly name DreamweaverCtrls, or one of its dependencies, was not found."

Here is the complete listing:

Line 1: <%@ Page Language="VB" ContentType="text/html" ResponseEncoding="iso-8859-1" %>
Line 2: <%@ Register TagPrefix="MM" Namespace="DreamweaverCtrls" Assembly="DreamweaverCtrls,version=1.0.0.0,publicKeyToken=836f606ede05d46a,culture=neutral" %>
Line 3: <MM:DataSet
Line 4: id="dsBirthdays"


Source File: c:\inetpub\wwwroot\TestSite\Test1.aspx Line: 2

Assembly Load Trace: The following information can be helpful to determine why the assembly 'DreamweaverCtrls' could not be loaded.


=== Pre-bind state information ===
LOG: DisplayName = DreamweaverCtrls, Version=1.0.0.0, Culture=neutral, PublicKeyToken=836f606ede05d46a
(Fully-specified)
LOG: Appbase = file:///c:/inetpub/wwwroot
LOG: Initial PrivatePath = bin
Calling assembly : (Unknown).
===

LOG: Publisher policy file is not found.
LOG: No redirect found in host configuration file (C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspnet.config).
LOG: Using machine configuration file from C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\config\machine.config.
LOG: Post-policy reference: DreamweaverCtrls, Version=1.0.0.0, Culture=neutral, PublicKeyToken=836f606ede05d46a
LOG: Attempting download of new URL file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET Files/root/2135a508/8d69a834/DreamweaverCtrls.DLL.
LOG: Attempting download of new URL file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET Files/root/2135a508/8d69a834/DreamweaverCtrls/DreamweaverCtrls.DLL.
LOG: Attempting download of new URL file:///c:/inetpub/wwwroot/bin/DreamweaverCtrls.DLL.
LOG: Attempting download of new URL file:///c:/inetpub/wwwroot/bin/DreamweaverCtrls/DreamweaverCtrls.DLL.
LOG: Attempting download of new URL file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET Files/root/2135a508/8d69a834/DreamweaverCtrls.EXE.
LOG: Attempting download of new URL file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET Files/root/2135a508/8d69a834/DreamweaverCtrls/DreamweaverCtrls.EXE.
LOG: Attempting download of new URL file:///c:/inetpub/wwwroot/bin/DreamweaverCtrls.EXE.
LOG: Attempting download of new URL file:///c:/inetpub/wwwroot/bin/DreamweaverCtrls/DreamweaverCtrls.EXE.

How can I fix this problem and render the page?

Steve
This topic has been closed for replies.

2 replies

Deaf_Web_Designer
Inspiring
October 16, 2006
I hope this one might help you...

Creating ASP.NET Web applications as referenced by Microsoft Developer Network:
URL: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconaspnetplatformrequirements.asp
Deaf_Web_Designer
Inspiring
October 16, 2006
Looks like that you didn't set up your ASP.NET web server correctly. Since I am fluently working with PHP/MySQL, so I don't know much about ASP.NET.

You might want to take a look at Microsoft web server help.

I think it has a lot to do with setting up your ASP.NET, and other important components that makes these web app/script programming works together on your localhost.

The path points to file:/// made me wonder what's up. Looks like it has not been set up correctly. It should points to c:/, not to file:///, I believe.