简体   繁体   中英

Inherit problem in asp.net

in my web application i copy and paste the code from other site to in my page also the source code starting form when i run the application it is giving the error like this

Server Error in '/DomainIV' Application.

Compilation Error Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.

Compiler Error Message: ASPNET: Make sure that the class defined in this code file matches the 'inherits' attribute, and that it extends the correct base class (eg Page or UserControl).

Source Error:

Line 1: using System; Line 2: using System.Data; Line 3: using System.Web;

Source File: c:\\Inetpub\\wwwroot\\DomainIV\\WhoIs.aspx.cs Line: 1

this is my problem help me thank u.

In your aspx page there will be the following at the top:

<%@ Page Language="C#" MasterPageFile="~/Test.Master" AutoEventWireup="true" CodeBehind="Test.aspx.cs" Inherits="TestApp.Test" Title="Untitled Page" %>

In your .cs file your class will be defined like:

namespace TestApp
{
    public partial class Test : System.Web.UI.Page
    {

Make sure the inherits property in the aspx page matches the class definition in the .cs file. In the example above it is 'TestApp.Test' in the inherits property and the class must have the same namespace and classname TestApp and Test.

You probably copied the whole contents of one of the files and now the two pieces no longer match up.

My advice, create the new page with the same file name as the source.
Then copy and paste the codes into the new pages (APSX and code-behind). Works for me everytime.

In aspx page, there will be

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>

And in .cs page

public partial class _Default : System.Web.UI.Page{}

Inherits attribute and the class name both should be same. Hope this resolves the issue.

In your ASPX file, make sure the @Page declaration has an Inherits attribute that matches the full class name of the class in your code behind file. This declaration is usually the first line of the ASPX file. Also make sure that the class in your code behind file inherits System.Web.UI.Page and that it is not a sealed class.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM