Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Inherit problem in asp.net

Tags:

c#

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 (e.g. 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.

like image 961
Surya sasidhar Avatar asked Nov 04 '09 05:11

Surya sasidhar


2 Answers

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.

like image 89
Kelsey Avatar answered Nov 15 '22 07:11

Kelsey


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.

like image 1
o.k.w Avatar answered Nov 15 '22 08:11

o.k.w