Testing different versions of a website
In this recipe, we are going to test the v3.5 application pool we created. Also, we will test the default v4.0 application pool.
We are going to test the v4.0 and v3.5 frameworks. We have created both the files and already uploaded them to wwwroot
folder.
Getting ready
In this recipe, we need the already configured v4.0 and v3.5 frameworks. For the web pages, we've already created the v4.0 and v3.5 framework application files. One by one, we will test the localhost
URL and see the result. We will also test across versions of frameworks and web application files.
How to do it...
- We are going to test the v4.0 application, which is
DefaultAppPool. You already uploaded the web application files to the
wwwroot
folder in the previous recipe. - Open Internet Explorer, type
http://localhost/
in the address bar, and pressEnter
. You will see the following screen:

- Now we are going to test the v3.5 application, which is
2and3.5AppPool
. You already uploaded the web application...