views:

30

answers:

1

I have a Web Application (ASP.NET C# for .NET 3.5) that uses the Session object to store, amount little things the debug information so when things go wrong, this is the first place to go.

The process is simple actually,

no matter what browser (except IE), when I navigate to a page, in the Debug Log I have data, just like the one show below

alt text

problem is that in Internet Explorer, the Debug Log is always blank (blank as no information, not no html code)

alt text

What can I do?

I tried several Security settings of IE8:

  • add the site (machine name) to Trusted Sites
  • disable Protect Mode
  • set Local intranet security level to LOW
  • set Accept All Cookies under Privacy
  • checked the Allow Active Content under Advanced tab

I really don't know what more can I do :-(

Any help is greatly appreciated!

A: 

You could try using Fiddler - a web debugging proxy - to check traffic between IE and your site. Also, if you can, try other versions of IE on different machines/networks to see if it's a global problem, or just related to one browser. And don't forget you can hit F12 to enable developer console in IE.

Dan Diplo
I do... it says nothing regarding this as this is a server thingy. Fiddler / FireBug for FF only catch requests and responses, and in my example, all I do is load a page, not even click or request an action. HTML is show well on all browsers, just the Session Object is not displayed on IE browser :(
balexandre