简体   繁体   English

如何强制IE使用.net Framework 3.5加载网站?

[英]How do I force IE to load site with .net framework 3.5?

I have a web app then needs framework 3.5 to run. 我有一个Web应用程序,然后需要框架3.5运行。 A system update keeps installing framework 4.5, this breaks the web app. 系统更新不断安装框架4.5,这破坏了Web应用程序。 I updated the web.config and even tried an app config for IE (config listed below). 我更新了web.config,甚至尝试了IE的应用程序配置(下面列出的配置)。 But neither work, I downloaded processactivityview tool to see what was going on. 但是都没用,我下载了processactivityview工具来查看发生了什么。 It seems to load framework 4.5 before reading the config file. 似乎在读取配置文件之前已加载框架4.5。

How can I force the IE to load this page with framework 3.5? 如何强制IE使用Framework 3.5加载此页面?

屏幕截图

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <startup>
        <supportedRuntime version="v2.0.50727"/>
    </startup>
</configuration>

如果您有权访问IIS,请在IIS中为FW 3.5创建新的应用程序池,并将您的应用程序分配给它。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何在VS2010中使用asp.net重新配置网站并将其编译为Framework 3.5? - How do I reconfigure and compile a website to Framework 3.5 using asp.net in VS2010? 如何获取Visual Studio Intellisense工具提示以显示.NET Framework 3.5的说明? - How do I get Visual Studio Intellisense tooltips to show descriptions for .NET Framework 3.5? 如何将.Net Framework从版本3.5更改为版本4.0 - How do I change the .Net Framework from version 3.5 to version 4.0 如何在.NET 3.5中使用DataGridView? - How do I use a DataGridView in .NET 3.5? 无法加载文件或程序集-Framework .NET 3.5 - Could not load file or assembly - Framework .NET 3.5 使用.NET 3.5实体框架,如何保存实体? - Using the .NET 3.5 Entity Framework how can I save an entity? 如何将这些代码更改为C#.net framework 3.5? - How can I change these codes to C#.net framework 3.5? 如何强制 .NET Framework 3.5 的 WPF 应用程序使用更新的 L&amp;F? - How to force WPF app for .NET Framework 3.5 use newer L&F? 现在将.net Framework 3.5转换为4.0时,每当我尝试执行回发时,都会收到脚本错误 - Converted .net framework 3.5 to 4.0 now i get a scripting error whenever i try to do a postback 如何在.NET 3.5中控制音​​量? - How do I control audio volume in .NET 3.5?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM