如何找到我的.net框架版本
答案 0 :(得分:1)
查看web.config
<add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
答案 1 :(得分:0)
如果您需要以编程方式检查它:
Microsoft.Win32.RegistryKey registryKey;
registryKey = Microsoft.Win32.Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\NET Framework Setup\NDP\", false );
string[] installedNetVersions = registryKey.GetSubKeyNames();
答案 2 :(得分:0)
System.Environment.Version
将为您提供运行应用程序的CLR版本 - 这可能与ASP.NET版本不同。