在iis中运行包含多个项目的asp.net解决方案
我有一个 ASP.NET 解决方案,其中包含多个相互关联的项目,并且每个项目在 web.config 文件中都有不同的配置。整个解决方案保存在一个文件夹中,假设为“X”。我想在iis中运行该解决方案。为此,我在 iis 中创建了一个虚拟路径“X”,将文件夹“X”转换为应用程序,并在根文件夹“X”中创建了一个 web.config 文件。
当我在浏览器中查看项目的默认页面之一时,它显示以下错误 解析器错误消息:无法加载类型“app1.SiteMaster”
我已经编译了解决方案。 请帮助...我是否缺少一些设置...
I have an asp.net solution containing more than 1 projects which are inter-related and each project have different configurations in web.config file. The whole solution is kept in a folder, lets say 'X'. I want to run the solution in iis. For that, I have created a virtual path in iis of 'X', converted the folder 'X' to an application, and created a web.config file in the root folder that is 'X'.
When I am viewing one of the project' default page in browser, it shows an error of
Parser Error Message: Could not load type 'app1.SiteMaster'
I have already compiled the solution.
Please help... Am i missing some settings...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来应用程序找不到母版页。假设您的项目共享相同的母版页,您可能需要将母版页的路径更新为从根目录开始的相对路径。
It sounds like the application can't find the master page. Assuming that your projects share the same master page, you probably need to update the path to the master page to the relative path from the root.