How can i know which version of .Net Framework

G

Guest

Hi guys,

How can i know which version of .NET Framework am i using in my server. Any command of any place can show me the correct information?
I found that the componenet i create is run smoothly in .NET Framework 1.0, and not so smooth in version 1.1. So i suspect the new server has install .NET Framework 1.1.

From Zachary
 
M

Mitch Ruebush

Look in the following directory (or equivalent on your computer)
C:\windows\Microsoft.NET\Framework and you will see directories that
represent the versions of the framework. I believe you can use
System.Reflection namespaces AssemblyVersionAttribute class to get the
version of a loaded assembly. Just look at one of the assemblies that come
with the Framework.

Mitch Ruebush
Microsoft Regional Director -
http://www.microsoftregionaldirectors.com
Visual Developer - .NET MVP -
Architect | Evangelist | Teacher
Online Consulting, Inc. - http://www.onlc.com
MCSD, MCAD, MCDBA, MCSE, MCT




Zachary said:
Hi guys,

How can i know which version of .NET Framework am i using in my server.
Any command of any place can show me the correct information?
I found that the componenet i create is run smoothly in .NET Framework
1.0, and not so smooth in version 1.1. So i suspect the new server has
install .NET Framework 1.1.
 

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

Top