G
Guest
Hi folks,
first off, I'm using Framework vs 1.1 with ASP.net and C#
I'm trying to extend the System.Web.UI.Webcontrols.DataGrid, and the only
thing I want to extend is the Render method (in order to add <thead> and
<tbody> elements)
so far so good
I've placed this code into another project called CustomControls with a
namespace of CustomControls, I've also called it DataGrid so mine is
CustomControls.DataGrid
<%@ Register TagPrefix="msdn" Namespace="CustomControls"
Assembly="CustomControls" %>
since the namespace is called "CustomControls" and the assembly will become
CustomControls.dll
if I do this in the HTML view
<msdn
ataGrid id="dgCustom" runat="server" AutoGenerateColumns="true">
</msdn
ataGrid>
I never get the variable to appear in the code view and I have an 'error
creating control' view in the pseudo browser window.
my question:
once you actually subclass a datagrid, how do you use your own subclass on
an .aspx page? (I referenced the component from the toolbox and still I can't
drag and drop it), I don't think the problem is anything as trivial as a
missing Using or the Dll not being referenced inside the web project...those
are both correctly set up
Regards and thanks in advance,
CharlesA
first off, I'm using Framework vs 1.1 with ASP.net and C#
I'm trying to extend the System.Web.UI.Webcontrols.DataGrid, and the only
thing I want to extend is the Render method (in order to add <thead> and
<tbody> elements)
so far so good
I've placed this code into another project called CustomControls with a
namespace of CustomControls, I've also called it DataGrid so mine is
CustomControls.DataGrid
<%@ Register TagPrefix="msdn" Namespace="CustomControls"
Assembly="CustomControls" %>
since the namespace is called "CustomControls" and the assembly will become
CustomControls.dll
if I do this in the HTML view
<msdn
</msdn
I never get the variable to appear in the code view and I have an 'error
creating control' view in the pseudo browser window.
my question:
once you actually subclass a datagrid, how do you use your own subclass on
an .aspx page? (I referenced the component from the toolbox and still I can't
drag and drop it), I don't think the problem is anything as trivial as a
missing Using or the Dll not being referenced inside the web project...those
are both correctly set up
Regards and thanks in advance,
CharlesA