问题描述
ServerErrorin'/'Application.--------------------------------------------------------------------------------CompilationErrorDescription:Anerroroccurredduringthecompilationofaresourcerequiredtoservicethisrequest.Pleasereviewthefollowingspecificerrordetailsandmodifyyoursourcecodeappropriately.CompilerErrorMessage:ASPNET:Makesurethattheclassdefinedinthiscodefilematchesthe'inherits'attribute,andthatitextendsthecorrectbaseclass(e.g.PageorUserControl).SourceError:[Norelevantsourcelines]SourceFile:d:virtualhostweb2367171wwwwebofficeDefault.aspx.csLine:1
解决方案
解决方案二:
请确保在aspx中的页面指令Inherits属性与aspx.cs中的类一致<%@PageLanguage="C#"AutoEventWireup="true"CodeFile="CheckBoxListDemo.aspx.cs"Inherits="CheckBoxListDemo"%>
publicpartialclassCheckBoxListDemo:System.Web.UI.Page
楼主很可能是修改了aspx.cs中的类名,但没有修改对应的aspx中的Inherits属性
解决方案三:
引用1楼amandag的回复:
请确保在aspx中的页面指令Inherits属性与aspx.cs中的类一致HTMLcode<%@PageLanguage="C#"AutoEventWireup="true"CodeFile="CheckBoxListDemo.aspx.cs"Inherits="CheckBoxListDemo"%>C#codepublicpartialclassCheckBoxListDemo:System.Web.UI.Page楼主很可能是修改了aspx.cs中的类名,但没有修改对应的aspx中的Inherits属性
解决方案四:
没错啊,还有就是,我在本地测试的时候能用,就是上传到服务器以后才出这个错误`~
解决方案五:
服务器支持asp.net2.0么?