tuning...performance

  • Thread starter Thread starter abcd
  • Start date Start date
A

abcd

I am using one asp web page with code behind and using C#. The page is very
slow when first hit. some time doesnt display but if I wait and request the
page it is displayed. What could be the wrong. Do I missing any caching,
performance tuning. Also I noticed that when I request the page it goes
twice into Page_Load?

thanks in advance
 
This is the asp.net process loading up your application. It's normal.

The going into Page_Load twice means you have that event handler added
twice. Most likely it is because you are explicitly adding the handler and
have AutoEventWireup set to True. It's not related to the issue above.
 
AutoEventWireup false on my page...


Marina said:
This is the asp.net process loading up your application. It's normal.

The going into Page_Load twice means you have that event handler added
twice. Most likely it is because you are explicitly adding the handler and
have AutoEventWireup set to True. It's not related to the issue above.
 
That was a guess, because that is the most common reason why it happens.
Obviously, can't tell you much else since you didn't post any code.
 
Back
Top