Line 1:  <%@ Page language="c#" Codebehind="Student.aspx.cs" AutoEventWireup="false" Inherits="Student" %>
什么原因?

解决方案 »

  1.   

    建立一个新项目,把现在的某一个页面COPY过去,编译试试
      

  2.   

    看看Student.aspx.cs中指定的类名是什么?<%@ Page language="c#" Codebehind="Student.aspx.cs" AutoEventWireup="false" Inherits="命名空间.类名" %>
      

  3.   

    估计是编译没通过,看看bin里面有生成的.dll文件吗?
      

  4.   

    楼主的代码是从其他地方copy过来的吧?
    肯定是Inherits属性错了,应该是“名字空间.类名”,这个类名是Student.aspx.cs文件的指定类的类名。