Problems HELP !!!

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

Guest

am facing some problems which is am not able to get hold of the error from
any angle. Please help.

Background
We have developed some ASP.net applications using Visual Studio .NET 2003
and deployed them locally on our Windows 2000 Server and on our production
servers only also, all these applications were working fine without any
glitch or any bug.

Our production servers got changed from Windows 2000 To Windows 2003
Servers, after this we are facing some problems in our code and not able to
figure them out as to why they are there.. I hope you would be able to help
me on this one.

Problem 1.

Whenever there is a post back or something in a aspx web form we get unable
to validate data error in viewstate, this error is coming randomly and not is
any specific place.

Problem 2.

In some of our web forms the action on the buttons do not work, meaning if
you keep pushing the buttons nothing happens, as if there is no action
written for these buttons.

Problem 3.

We aren't able to maintain any session state inProc on the web server, if
the user is logged in, it will again redirect the user to the login page.
 
am facing some problems which is am not able to get hold of the error from
any angle. Please help.

Background
We have developed some ASP.net applications using Visual Studio .NET 2003
and deployed them locally on our Windows 2000 Server and on our production
servers only also, all these applications were working fine without any
glitch or any bug.

Our production servers got changed from Windows 2000 To Windows 2003
Servers, after this we are facing some problems in our code and not able to
figure them out as to why they are there.. I hope you would be able to help
me on this one.

Problem 1.

Whenever there is a post back or something in a aspx web form we get unable
to validate data error in viewstate, this error is coming randomly and not is
any specific place.

You mentioned 'servers' (plural), are you in a load balanced
environment? Depending on how the load balancing works, you may need
to synchronize the machine keys.

See these two articles:
http://msdn.microsoft.com/library/d...n-us/cpgenref/html/gngrfmachinekeysection.asp
http://support.microsoft.com/default.aspx?kbid=323744

Problem 2.

In some of our web forms the action on the buttons do not work, meaning if
you keep pushing the buttons nothing happens, as if there is no action
written for these buttons.

Are you testing from from a Win2003 server also? The browser on 2003
ships in an enhanced security mode preventing javascript. You'd need
to add the server to the list of trusted sites for javascript to work
with enhanced security.
Problem 3.

We aren't able to maintain any session state inProc on the web server, if
the user is logged in, it will again redirect the user to the login page.

Are cookies enabled?
 
Hi Scott

Sorry for the mistake, we are on a single server only, so the question of
load balancing does not arise only.

We are testing the site on Windows XP machine. There is no javascript, the
buttons action are for the VB code behind. Eg BtnAdd on click should fire sub
btnAdd_click() etc, this is not happening.

Yes COokies are enabled. Your help would be highly appreciated.
 
Back
Top