将 ASP.NET 1.1 站点移至 IIS 7
我正在尝试将当前托管在装有 IIS 6 的垂死服务器上的 asp.net 1.1 站点移动到装有 IIS 7 的新服务器。我已使用 IIS 设置所有内容以获取 asp.net 1.1 应用程序池和经典模式,所有这些好东西。但是,当我访问该网站时,我不断收到
Parser Error
Could not load type 'XXX.Type
<%@ Page Language="vb" AutoEventWireup="false" Codebehind="default.aspx.vb" Inherits="XXX.Type" EnableViewState="False" %>
我无法访问源代码的消息。我应该怎么做才能让它运行?
我很感激任何帮助。
I am trying to move an asp.net 1.1 site that is currently hosted on a dying server with IIS 6 to a new server with IIS 7. I've setup everything with IIS to get the asp.net 1.1 app pool and classic mode and all that good stuff. When I access the site though, I keep getting
Parser Error
Could not load type 'XXX.Type
<%@ Page Language="vb" AutoEventWireup="false" Codebehind="default.aspx.vb" Inherits="XXX.Type" EnableViewState="False" %>
I don't have access to the source code. What should I do to get this running?
I appreciate any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来您在 bin 文件夹中缺少 default.aspx.vb 继承的 XXX.Type 类的 dll
Looks like you're missing dll in a bin folder for the XXX.Type class which default.aspx.vb inherits from