asp.net noob here。我想,因爲這話題在指定覆蓋/尋呼擴展的GridView: Problem with Efficient Gridview paging without datasource control重寫gridview類asp.net
後臺代碼:
namespace MyCode
{
public partial class _Default : System.Web.UI.Page
{
....
}
}
namespace cly.Web.CustomControls
{
public class clyGridView : GridView
{
...code
}
}
我將如何申報我的.aspx文件中這一新的GridView?我已經使用類作爲
試過,但還是不行,我得到這個錯誤
The type or namespace name 'clyGridView' does not exist in the namespace 'System.Web.UI.WebControls' (are you missing an assembly reference?)
我得到錯誤:名稱'MyResults'在當前上下文中不存在。我的代碼隱藏沒有看到新的clyGridView出於某種原因 – user1384831
結果'不會出現在您的示例代碼中,因此這是一個無關的新問題。說實話,我認爲在ASP.NET中啓動後創建自定義控件並不是一個好主意。在所有情況下,90%的人試圖發明已經存在的功能。 – Filburt
檢查你的** Default.aspx.designer.cs ** - 它必須包含'protected global :: cly.Web.CustomControls.clyGridView MyResults;'。 – Filburt