1.1 and 2.0 of same application on load balancer

  • Thread starter Thread starter rampabbaraju
  • Start date Start date
R

rampabbaraju

I have a website developed in .Net 1.1 and is running on three servers
under a load balancer. I want to add another server to the load
balancer which will have the same application but converted to 2.0. My
app does not store anything in the session, but is dependent on
Viewstate and cookies.

My doubt is that whether Viewstate generated by 1.1 can be understood
by 2.0 and vice versa.

Thanks
Ram
 
you can supply your own viewstate handler which uses a common format.
but, 2.0 controls store different data in viewstate then 1.0, so you
would have to turn viewstate off for all controls.


-- bruce (sqlwork.com)
 
Back
Top