what is Acme?

  • Thread starter Thread starter LL
  • Start date Start date
L

LL

Compiler Error Message: CS0246: The type or namespace name 'Acme' could not
be found (are you missing a using directive or an assembly reference?)

Source Error:

Line 1: <%@ Import Namespace="Acme" %>

How to fix it? Thanks.
 
Compiler Error Message: CS0246: The type or namespace name 'Acme'
could not be found (are you missing a using directive or an assembly
reference?)

Source Error:

Line 1: <%@ Import Namespace="Acme" %>

How to fix it? Thanks.

in this case Acme is a namespace that is importet from some library. your
error msg tells us, that you are trying to you a namespace from a lib that
you didn't reference.

you should add a reference to the library containing the acme namespace to
your project.


seems to me like a copy&paste error from some sample? ...
 
Thanks Peter.

How to fix this error:

Parser Error Message: Access is denied: 'Acme'.

Source Error:

Line 256: <add assembly="System.EnterpriseServices,
Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
Line 257: <add assembly="System.Web.Mobile,
Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
Line 258: <add assembly="*"/>
Line 259: </assemblies>
Line 260:
 
Thanks Peter.

How to fix this error:

Parser Error Message: Access is denied: 'Acme'.

Source Error:

Line 256: <add assembly="System.EnterpriseServices,
Version=1.0.5000.0, Culture=neutral,
PublicKeyToken=b03f5f7f11d50a3a"/> Line 257: <add
assembly="System.Web.Mobile, Version=1.0.5000.0, Culture=neutral,
PublicKeyToken=b03f5f7f11d50a3a"/> Line 258: <add
assembly="*"/> Line 259: </assemblies>
Line 260:

you'll have to fix the NTFS Access Rights on that library. Or maybe you are
trying to access some libraries that are denied to your IUSR
 
Thanks Peter.
you'll have to fix the NTFS Access Rights on that library. Or maybe you are
trying to access some libraries that are denied to your IUSR

--

How to configure so IUSR can access the library?
 
Thanks Peter.
check the NTFS permissions of these libraries on your hard disk.

I have removed it from reference(and from the project folder bin folder)But
somtimes I still get that error:
Parser Error Message: Access is denied: 'Acme'....

when I saw that message, and check the project folder's bin folder again, it
was still there? Any ideas?
 
Acme, Inc.

The worlds largest supplier of rocket powered rollerskates D

Dont u ever watch loony toons :D
 
Back
Top