Tuesday, March 13, 2012

Should be very simple.... Where is the error ?

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

Quote:

Originally Posted by

></MyTag:MyCustomBoundColumn>


<MyTag:MyCustomBoundColumn DataField="Column2" etc

Quote:

Originally Posted by

></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:

Quote:

Originally Posted by

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

Quote:

Originally Posted by

</MyTag:MyCustomBoundColumn>


<MyTag:MyCustomBoundColumn DataField="Column2" etc

Quote:

Originally Posted by

</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.
Alex

0 comments:

Post a Comment