Hi. I have a class "MyCustomBoundColumn.vb" which looks like this
________________________________________
____________________________
Imports System
Imports System.Web.UI.WebControls
Namespace Alex
Public Class MyCustomBoundColumn
Inherits BoundColumn
.....................
End Class
End Namespace
________________________________________
____________________________
and another, MyCustomDataGrid.vb, like this:
________________________________________
____________________________
Imports System
Imports System.Web.UI.WebControls
Namespace Alex
Public Class MyCustomDataGrid
Inherits DataGrid
.....................
End Class
End Namespace
________________________________________
____________________________
I need to use MyCustomDataGrid in an aspx page, therefore:
<%@dotnet.itags.org. Register Tagprefix = "MyTag" Namespace="Alex" Assembly =
"MyCustomDataGrid" %>
and in the form
<MyTag:MyCustomDataGrid runat="server" AutoGenerateColumns="False">
<Columns>
<MyTag:MyCustomBoundColumn DataField="Column1" etc
></MyTag:MyCustomBoundColumn>
<MyTag:MyCustomBoundColumn DataField="Column2" etc
></MyTag:MyCustomBoundColumn>
</Columns>
</MyTag:MyCustomDataGrid>
However, I get "MyCustomDataGrid is not a known element", and then a
cascade of other errors. I guess I'm missing something elementary...
but what ?
Thanks.
AlexPS. The projects name is TestCustomDataGrid... Even if I try with
<%@. Register Tagprefix = "MyTag" Namespace="Alex" Assembly =
"TestCustomDataGrid" %>
it does not work.
Should I create a DLL first ? (Using vbc ?) Can't my classes be in the
same project ?
If so, I guess I should create MyCustomBoundColumn.dll first, and then,
somehow, reference to it in
MyCustomDataGrid and create MyCustomDataGrid.dll, and then move
MyCustomDataGrid.dll in the BIN folder of the project
TestCustomDataGrid, and then try again... I tried that, but I can't
compile
MyCustomDataGrid because it says it doesn't know who
MyCustomBoundColumn is....
Radu wrote:
> Hi. I have a class "MyCustomBoundColumn.vb" which looks like this
> ________________________________________
____________________________
> Imports System
> Imports System.Web.UI.WebControls
> Namespace Alex
> Public Class MyCustomBoundColumn
> Inherits BoundColumn
> .....................
> End Class
> End Namespace
> ________________________________________
____________________________
> and another, MyCustomDataGrid.vb, like this:
> ________________________________________
____________________________
> Imports System
> Imports System.Web.UI.WebControls
> Namespace Alex
> Public Class MyCustomDataGrid
> Inherits DataGrid
> .....................
> End Class
> End Namespace
> ________________________________________
____________________________
> I need to use MyCustomDataGrid in an aspx page, therefore:
> <%@. Register Tagprefix = "MyTag" Namespace="Alex" Assembly =
> "MyCustomDataGrid" %>
> and in the form
> <MyTag:MyCustomDataGrid runat="server" AutoGenerateColumns="False">
> <Columns>
> <MyTag:MyCustomBoundColumn DataField="Column1" etc
> <MyTag:MyCustomBoundColumn DataField="Column2" etc
> </Columns>
> </MyTag:MyCustomDataGrid>
> However, I get "MyCustomDataGrid is not a known element", and then a
> cascade of other errors. I guess I'm missing something elementary...
> but what ?
> Thanks.
> Alex
Tuesday, March 13, 2012
Should be very simple.... Where is the error ?
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment