Is there a way to have a Web Farm that serves two different application versions using IIS 7 -
I have an asp.net application I essentially rollout new versions for my customers (logon of all users) I want to be able to. I would like an "old" site and a "new" site.
Once a user has a URL, once they have been certified, they are sent to the "old" or "new" site based on their database version.
Is this possible with IIS 7? How to do it best?
Thank you
Not sure that I'm totally understanding but I'm going to make some assumptions. Do I believe the logon of users through form authentication, and it is trivial to determine the user database version?
If so, then you can just host your old and new version in different virtual directories, so make sure they can. If users successfully verify (possibly on the new version of the site), if they should use the old site, you can redirect them to the default page of that site rather than the new version. I believe that the hedod is redirected to RedirectFromLogonPage ()
to prevent the user from using a bookmark, instead of going to the wrong site, you Session_Start () Global.assx , which uses the URL that the user should use and redirect your request properly, you have to do this in newer and older versions of the site.
Comments
Post a Comment