我无法更改 IIS 6 中的目标 .NET Framework
我们在当前项目中使用的特定测试系统上禁用了针对另一个版本的 .Net Framework 的选项。
我已尝试以下操作,但没有成功:
- 终止所有 W3WP.EXE 进程
- 重新启动 IIS 服务
- 远程调试已从框中删除。
只是希望得到一些指点。
The option to target another version of the .Net Framework is disabled on a particular test system we are using on a current project.
I have tried the following without success:
- Killing all W3WP.EXE processes
- Restarting the IIS service
- Remote Debugging has been removed from the box.
Just hoping for some pointers.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
尝试重新在 IIS 上注册 ASP.NET。
Try reRegistering ASP.NET on IIS.
我认为如果您在安装.net之后安装iis,就会发生这种情况。 只需使用前面解释的 aspnet_regiis.exe 即可。
I think that this happens if you install the iis after the .net installation. Just use the aspnet_regiis.exe as explained before.
您确定您问的是正确的问题吗?
没有新的 .NET 运行时版本作为目标。 如果您有 3.0 或 3.5 框架,您的 IIS 在运行时仍将显示 2.0,因为 3.0 和 3.5 仅在框架类和编译器方面与 2.0 应用程序不同!
您应该只在 IIS 配置中看到 1.X 和 2.0 框架。
编辑:目标切换仅在编译应用程序时发生。 因为 2.0、3.0 和 3.5 都运行在同一个 .NET 运行时环境 2.0 (VM) 上。
您仍然需要安装其他框架,因为它们的 API 不同,但它们都在相同的中间语言指令集上运行。
Are you sure you are asking the right question?
There is no new .NET Runtime version to target. If you have a 3.0 or 3.5 Framework your IIS will still display 2.0 as it's runtime because 3.0 and 3.5 differ only in Framework classes and compiler from a 2.0 application!
You should only see 1.X and 2.0 frameworks in your IIS configuration.
Edit: Target switching only happens when your compile your application. Because 2.0, 3.0 and 3.5 all run on the same .NET Runtime Environment 2.0 (VM).
You still need to have the additional frameworks installed because their API differs, but all run on the same intermediate language instruction set.
IIS 中是否有 ASP.net 服务(允许)
无论如何,您可以使用一些 vbscript 来更改 .net 版本。
Do you have ASP.net Serveice (Allowed) in IIS
In anyway, you can use some vbscript to change the .net version.