Installation and deployment
Version 3.x > Installation and deployment > How can I tell which version of the .NET framework Kentico is using? View modes: 
User avatar
Member
Member
mary.garrison-springbox - 6/21/2010 11:36:47 AM
   
How can I tell which version of the .NET framework Kentico is using?
I need to create a clone of a server that's running 3.1a. I need to specify the correct version of the .NET framework. How can I tell which version Kentico was installed with?

User avatar
Kentico Developer
Kentico Developer
kentico_ondrejv - 6/22/2010 6:09:47 AM
   
RE:How can I tell which version of the .NET framework Kentico is using?
Hello,

The fastest way is checking your web.config file. If you take a look at following <system.web> section you will see the control reference for System.Web.UI. For the .NET 2.0 is as follows:

<add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />


Whereas the .NET 3.5 line differs with the Version parameter like this:

<add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />


Best regards
Ondrej Vasil