My program was working fine and after making some changes I get this error when I try to bring up the default.aspx page. All other pages come up fine. Does anybody have an idea as to why?
Fred
Code:
Parser Error
Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.
Parser Error Message: 'iGrades._Default' is not allowed here because it does not extend class 'System.Web.UI.Page'.
Source Error:
Line 1: <%@ Page Title="iGrades - Home Page" Language="vb" AutoEventWireup="false" MasterPageFile="~/MasterPages/iGrades.Master" CodeBehind="Default.aspx.vb" Inherits="iGrades._Default" %>
Line 2: <asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
Line 3: </asp:Content>
Source File: /Default.aspx Line: 1
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.272
Default.aspx
Code:
<%@ Page Title="iGrades - Home Page" Language="vb" AutoEventWireup="false" MasterPageFile="~/MasterPages/iGrades.Master" CodeBehind="Default.aspx.vb" Inherits="iGrades._Default" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="cpMainContent" runat="server">
<h2>
Welcome to iGrades Web App.
</h2>
<h3>
A Web Appplication designed to allow professors to automatically maintain their student's scores.
</h3>
<h3>
Coming Soon!
</h3>
</asp:Content>
Default.aspx.designer.
vb
Code:
'------------------------------------------------------------------------------
' <auto-generated>
' This code was generated by a tool.
'
' Changes to this file may cause incorrect behavior and will be lost if
' the code is regenerated.
' </auto-generated>
'------------------------------------------------------------------------------
Option Strict On
Option Explicit On
Partial Public Class _Default
End Class
Default.aspx.
vb
Code:
Public Class _Default
Inherits System.Web.UI.Page
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
End Sub
End Class