S
Sue
Is there a way to take datagrid .aspx like this:
<asp:Label runat="server" Text='<%# DataBinder.Eval
(Container, "DataItem.Somefield") %>'></asp:Label>
and set it in code like this:
sub setMyLabel()
MyLabel Label = new Label
With Me.MyLabel
.ID = "SomeID"
.???
End With
End Sub
and end up with the same functionality?
tia,
Sue
<asp:Label runat="server" Text='<%# DataBinder.Eval
(Container, "DataItem.Somefield") %>'></asp:Label>
and set it in code like this:
sub setMyLabel()
MyLabel Label = new Label
With Me.MyLabel
.ID = "SomeID"
.???
End With
End Sub
and end up with the same functionality?
tia,
Sue