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)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top