Gridview edit flashing

  • Thread starter Thread starter David C
  • Start date Start date
D

David C

For some reason, when I click the Edit link button on a row, the screen just
flashes, like a postback but does not go into edit mode until I click it a
2nd time. The same thing happens when I click Update or Cancel when in Edit
mode. Any ideas on what might be causing this? Thanks.

David
 
Check to see if you have having a if (!Page.IsPostback) section being
handled. Maynot solve your problem completely, but would eliminate another
point of failure.
 
Nope. Still a problem. I'm not sure how to debug as this page is called
from the startup page by some user action and is send querystrings.

David
 
Nope. Still a problem. I'm not sure how to debug as this page is called
from the startup page by some user action and is send querystrings.

Put a breakpoint in the Page_Load event and run your application in
debug mode.
 
Back
Top