2011-01-25 130 views
3

在試圖建立的頁面Default.aspx的我得到的錯誤:未能加載類型「newVersion_Default」

Error 5 Could not load type 'newVersion_Default'. \server1\d$\newVersion\Default.aspx

內容頁:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="newVersion_Default" MasterPageFile="Main.master" %> 
<%@ MasterType VirtualPath="Main.master" %> 

<asp:Content id="Content2" contentplaceholderid="mainContent" runat="server"> 

    <h1>Welcome to this Page</h1> 

    <div class="tabWrapper"> 
     <div class="tab"><a href="#">Home</a></div> 
     <div class="tab"><a href="#">Tab 2</a></div> 
     <div class="tab tabSelected"><a href="#">Something Els wef wef w efe</a></div> 
     <div class="tab"><a href="#">Help!</a></div> 
     <div class="clear"></div> 
    </div>     
</asp:Content> 

而後面的代碼是空的!

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

這可能是一個新手的錯誤,但任何幫助讚賞:)

我不能重建整個項目還沒有,因爲有文件夾中的其他一些廢話這是傳統的ASP它不會建立和拋出錯誤,所以我必須一次構建每個頁面,這會導致問題嗎?

+0

它是網絡應用程序項目或網站項目? – abatishchev

+0

這是一個經典的ASP網站的附加功能,我在VS2008中打開網站並打開網站,然後在'newversion'中添加一個新文件夾。它之前運行良好,直到我創建母版頁,然後將其鏈接到。它作爲獨立頁面構建得很好。 –

+0

看我更新的帖子 – abatishchev

回答

2

在Web應用程序的情況下:

嘗試使用一個命名空間:

Inherits="MySite.newVersion_Default" 

namespace MySite 
{ 
    public partial class newVersion_Default : System.Web.UI.Page { } 
} 

在網站的情況下:

使用CodeFile而不是CodeBehind

+0

仍然不算運氣,同樣的錯誤。我已經命名空間的母版頁和默認頁面。 –

+0

超級!謝謝! –

+0

是的,完美的工作謝謝你! –

相關問題