----
Version Information: Microsoft .NET Framework Version:1.1.4322.2032; ASP.NET
Version:1.1.4322.2032
Oddly, if I copy my app's web.config into wwwroot, I at least get:
Application Trace [ clear current trace ]
Physical Directory: c:\inetpub\wwwroot\
Requests to this Application Remaining: 10
No. Time of Request File Status Code Verb
But, if I do things in my app, they don't show up in the trace log at
http://localhost/trace.axd but I wouldn't expect them to.
That is really strange.
Check to see that you have a trace section in machine.config :
<section name="trace"
The strangest thing is that you're getting a "File not Found" error,
while trace.axd doesn't actually exist as a real page.
If you click on this link :
http://localhost/trace.axd
and you have trace enabled in web.config, but you don't get a trace page,
maybe it's time to consider uninstalling/reinstalling the .Net Framework.
Is everything else in ASP.NET working OK ?
Or, do you have other unexplained errors ?
Have you tried running aspnet_regiis -i ?
Tried that and it still didn't work.
You *should* be able to get to it!
Could you try just :
<trace enabled="true"/>
?
Changed that and it didn't make any difference. I feel like you
should
be
able to get to trace.axd even if its off....as long as enabled is
true.
Set pageOutput to "true"
<trace
enabled="true"
requestLimit="10"
pageOutput="true"
traceMode="SortByTime"
localOnly="false"
/>
If pageOutput is set to "false" , no output is produced!
I can't seem to get to trace.axd. I have turned tracing on in
web.config.
Here is how I currently have i configured:
<trace
enabled="true"
requestLimit="10"
pageOutput="false"
traceMode="SortByTime"
localOnly="false"
/>
When I go to the traxe.axd file in my application directory, I get
a
404
File Not Found error message.
Anyone know what is going on?
Thanks.