0

Looking at a Kentico 7 custom module (ascx) that references a namespace (e.g.:

<%@ Import Namespace="MyCustom.Things" %>

I looked in the \bin directory for the site itself and can't find any reference to MyCustom.Things. I tried ildasm and ndepend, but neither were able to find the source of that namespace. I'm not sure the source is even available anymore, but I'm trying to at least find the imported dll.

Any ideas?

Update: Solved - it was in a .cs file in the /app_code directory of the web application.

Caveatrob
  • 12,667
  • 32
  • 107
  • 187

2 Answers2

1

Have you searched across all dll's? The namespace may not necessarily match the assembly name. But from how it's imported I'd assume it's in the same assembly of the ascx you're referring to.

It may well be a namespace created in any .cs file that is compiled with the custom module.

Pedro Costa
  • 2,968
  • 2
  • 18
  • 30
1

Use textual search in totalcmd for instance... Look through your App_Code as well..

Note: /App_Code is found in the root of your Kentico instance in IIS.

Caveatrob
  • 12,667
  • 32
  • 107
  • 187
rocky
  • 7,506
  • 3
  • 33
  • 48