This is the error message I get
Server Error in '/' Application.
--------------------------------------------------------------------------
Access is denied: 'ASPnetMenu'.
Description: An unhandled exception occurred during the execution of
the current web request. Please review the stack trace for more information
about the error and where it originated in the code.
Exception Details: System.IO.FileLoadException: Access is denied:
'ASPnetMenu'.
Source Error:
[No relevant source lines]
Source File: c:\WINNT\Microsoft.NET\Framework\v1.1.4322\Temporary
ASP.NET Files\root\98d707bb\ba55eee8\t0e5ad1x.0.cs Line: 0
Assembly Load Trace: The following information can be helpful to
determine why the assembly 'ASPnetMenu' could not be loaded.
=== Pre-bind state information ===LOG: DisplayName = ASPnetMenu,
Version=1.0.4.0, Culture=neutral, PublicKeyToken=9bc9f846553156bb
(Fully-specified)LOG: Appbase = file:///D:/Web Sites/iBIS_NETLOG: Initial
PrivatePath = binCalling assembly : t0e5ad1x, Version=0.0.0.0,
Culture=neutral, PublicKeyToken=null.=== LOG: Attempting download of new URL
file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/root/98d707bb/ba55eee8/ASPnetMenu.DLL.LOG: Attempting download of new
URL file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/root/98d707bb/ba55eee8/ASPnetMenu/ASPnetMenu.DLL.LOG: Attempting
download of new URL file:///D:/Web Sites/iBIS_NET/bin/ASPnetMenu.DLL.
Stack Trace:
[FileLoadException: Access is denied: 'ASPnetMenu'.]
ASP.TopMenuControl_ascx.__BuildControlTree(Control __ctrl) +0
ASP.TopMenuControl_ascx.FrameworkInitialize() in
c:\WINNT\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET
Files\root\98d707bb\ba55eee8\t0e5ad1x.0.cs:0
System.Web.UI.UserControl.InitializeAsUserControlInternal() +31
System.Web.UI.UserControl.InitializeAsUserControl(Page page) +15
ASP.Default_aspx.__BuildControltmc1() in D:\Web
Sites\iBIS_NET\Default.aspx:16 ASP.Default_aspx.__BuildControlTree(Control
__ctrl) in D:\Web Sites\iBIS_NET\Default.aspx:1
ASP.Default_aspx.FrameworkInitialize() in
c:\WINNT\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET
Files\root\98d707bb\ba55eee8\bh0vkxiw.0.cs:0
System.Web.UI.Page.ProcessRequest() +85
System.Web.UI.Page.ProcessRequest(HttpContext context) +18
System.Web.CallHandlerExecutionStep.System.Web.HttpApplication+IExecutionSte
p.Execute() +179 System.Web.HttpApplication.ExecuteStep(IExecutionStep
step, Boolean& completedSynchronously) +87
--------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.4322.573;
ASP.NET Version:1.1.4322.573
Nick Malik said:
I'm going to offer a guess:
Does your .net web application use COM+ services? If so, are those services
running with an identity of the "interactive user?" If so, change the
identity of the services to a domain user.
--- Nick