Postback problem

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a form in a C# ASP Dotnet application. There is code in both the
!Postback and Postback section. The code in Postback section always executes
on the development box but when I deploy the app on the server this does not
execute. I even tried putting "document.Form1.submit();" when it is suppose
to leave the page hoping that it will go in Postback section but it seems to
go in it only sometimes and not all the time. However if I dont put the
"document.Form1.submit();", it never goes in Postback section.

Any help or pointer is appreciated.

thanks
 
Hi,

Probably you are losing the session. It's the only thing I can think of
 
How would I know if I lost the session ? Everything else is working fine. I
even use session variables which seem to keep their values ....
 
Back
Top