我想要使用aspx連結ascx,參考了網路上面的一些文章,
但是在執行的時候還是會出現錯誤,
描述: 資源編譯無法完成 (錯誤發生於服務要求)。請檢閱下列的特定錯誤詳細資料,並視情況修改您的原始程式碼。
編譯器錯誤訊息: ASPNET: 請確定此程式碼檔中定義的類別符合 'inherits' 屬性,且其延伸正確的基底類別 (例如 Page 或 UserControl)。
請大大們幫我看看是哪邊出了問題,如有其他需要提供的,請再跟我說一聲,謝謝~
Default.aspx
<%@ Page Language="C#" AutoEventWireup="true"
CodeFile="Default.aspx.cs" Inherits="_Default" %>
<%@ Register Src="./WebUserControl.ascx"
TagPrefix="wuc" TagName="uc1" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<wuc:uc1 runat="server" />
</div>
</form>
</body>
</html>
Default.aspx.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace WebApplication_WEBTEST
{
public partial class Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
}
}
WebUserControl.ascx
<%@ Control Language="C#" AutoEventWireup="true"
CodeFile="WebUserControl.ascx.cs" Inherits="Default" %>
<asp:Label ID="Label1" runat="server" Text="我是使用者自訂控制項">
</asp:Label>
WebUserControl.ascx.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace WebApplication_WEBTEST
{
public partial class WebUserControl : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
{
}
}
}
執行後出現的錯誤訊息
您的ascx頁面的Inherits
屬性,
請將值修改為WebApplication_WEBTEST.WebUserControl
我把ascx頁面的Inherits屬性已經改了,但還是出現一樣的錯誤....
ascx程式碼
<%@ Control Language="C#" AutoEventWireup="true"
CodeFile="WebUserControl.ascx.cs" Inherits="WebApplication_WEBTEST.WebUserControl" %>
<asp:Label ID="Label1" runat="server" Text="我是使用者自訂控制項">
</asp:Label>
請修改您aspx及ascx的Inherits
屬性
aspx
Inherits="WebApplication_WEBTEST.Default"
ascx
Inherits="WebApplication_WEBTEST.WebUserControl"
可以了喔~謝謝~