FUSLOGVW.exe does not log ASP.NET binding failures

P

Pavils Jurjans

Hello,

I can't get the FUSLOGVW.exe to log the binding failures that happened while
loading an aspx page. I have been asking this in ASP.NET forum, but they
seem to be not able to answer this, so I try my luck here. I certainly know
that this is binding failure, since my aspx page runs fine, if I put the
necessary DLLs in the bin folder, but if I put them in another folder (and
specifying this another folder in web.config file), and refresh the aspx
page, it fails with "can't load type". I tried to provoce binding failure in
generic .NET exe application, and fusion log displayed them nicely. But, the
ASP.NET failures seem to be never even registered by fusion.

Here are references to my desperate search:

http://groups.google.com/groups?hl=en&lr=&ie=UTF-8&[email protected]
http://groups.google.com/groups?hl=en&lr=&ie=UTF-8&[email protected]

Thanks,

Pavils
 
G

Guest

The point is that all assemblies you want reference fro your app, you have either register in GAC with strong name, or place in any dir UNDER your app dir and than specify bind path. You can't have bind path outside of your app dir(or its subdirs)
 
P

Pavils Jurjans

Eliahu Baker said:
The point is that all assemblies you want reference fro your app, you have
either register in GAC with strong name, or place in any dir UNDER your app
dir and than specify bind path. You can't have bind path outside of your app
dir(or its subdirs)

I actually have discovered that already. But the problem that remains is,
that I can't seem to be able to place Code-Behind DLLs (the ones containing
the Class that is used in "inherits" attribute of @Page directive) in any
other dir than the ASP.NET application folder bin subfolder. The probing
settings in web.config file seem to be ignored when trying to resolve the
link to code-behind DLLs.

Rgds,

Pavils
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top