0

我正在尝试为我的 WebForms asp.net 项目升级到 .net 4。

现在,当我尝试访问 .asmx 网络服务时,我得到了这个。

Server Error in '/' Application. Type 'Chickenweb.WebServ.WebServ' does not inherit from 'System.Web.UI.Page'. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.Web.HttpException: Type 'Chickenweb.WebServ.WebServ' does not inherit from 'System.Web.UI.Page'.


这是因为我使用的是 IIS 并且使用了不正确的应用程序池。感谢您的所有回答!

4

1 回答 1

4

看起来 IIS 认为您的 .asmx 文件是 .aspx 文件。您应该检查 IIS 中的映射以查看 .asmx 是否已启用并正确设置。

于 2010-07-08T19:29:07.780 回答