Re: IE 6.0 hangs when click on submit button of ASP.NET page
am 30.03.2008 12:51:56 von David WangThanks for the clarification and confirmation that your problem is
really not with IIS, ASP.Net, nor security.
You say you have the same code working on Server1, which is your
attempt to say that the problem is not with your code.
You also said that you have the same IIS and ASP.Net code on Server1
as Server2, so applying your logic, you also say that the problem is
not with IIS and ASP.Net.
This leaves missing replication of your application's dependencies as
the biggest culprit.
You said that you can get things to work by changing permissions on
server2.
I speculate that you are probably missing some ACL somewhere that your
application depends upon to function.
And why it works with Firefox but not IE6? Browsers can handle error
conditions differently. Expecting browsers to handle error conditions
in the same manner is unreasonable since it is not defined as any
standard. If you want consistent behavior, make sure your application
does not get into error conditions that the browser sees (this is why
custom error pages exist -- gives your server-side application control
of what the browser displays for "errors").
Please keep us posted on the results of your debugging of the
application.
//David
http://w3-4u.blogspot.com
http://blogs.msdn.com/David.Wang
//
On Mar 29, 11:16=A0pm, Nam
> Thank you all for trying to help me out. I will use debugger at work on
> Monday. Keep in mind that the exact same code works on Server1. I also
> noticed that the above functionality works fine on Firefox. But most of ou=
r
> users use IE 6.0. I will keep you updated.
>
>
>
> "David Wang" wrote:
> > On Mar 28, 4:52 pm, Nam
> > > ASP.NET 1.1.4322
> > > Server1: Windows Server Enterprise Ed 2003 - SP2
> > > Server2: Same as Server 1.
> > > IE 6.0 -SP2
>
> > > After we migrated our website from server1 to server2 everything works=
fine
> > > accept for the following on one page:
>
> > > When you click on Save button, this page is supposed to copy a file fr=
om
> > > website-A to website-B and display a second webpage (that shows the me=
ssage
> > > "Your file was copied successfully...etc., etc."). The both websites a=
re on
> > > the same server - Server2.
>
> > > This functionality was working fine on server 1. However, on server 2,=
the
> > > file is copied ok on website-B, but IE hangs (with a white page) and i=
t does
> > > not return to the second webpage (even after refreshing the IE). But w=
hen you
> > > open the application again, the second page is displayed with the mess=
age
> > > "Your file was copied successfully...etc., etc.".
>
> > > Both websites on server 2 are using DefaultAppPool that is running und=
er a
> > > domain user account. Both websites have exact same configurations as o=
n
> > > Server1. The application is the exact same copy of the application on =
server1.
>
> > > When we use impersonation, the above functionality works fine. But we =
do not
> > > want to use impersonation for security reasons and, we were not using
> > > impersonation on Server1 either.
>
> > > Thanks,
> > > Nam
>
> > This does not sound like an issue with IIS, IE, ASP.Net. It sounds
> > like you failed to migrate all dependent configuration of your web
> > application from server1 to server2.
>
> > Since you have the steps to reproduce the issue, I recommend you
> > attach debuggers to your website and figure it out. It sounds like
> > your code failed to access something using the application pool
> > identity after it copied the file -- so you get the "blank/hanging"
> > page. You'll need to figure out what is causing that failure so that
> > things work again.
>
> > //David
> >http://w3-4u.blogspot.com
> >http://blogs.msdn.com/David.Wang
> > //- Hide quoted text -
>
> - Show quoted text -