hi all
i have user control which is populates with in datagrid
<asp:datagrid id="DataGrid1" runat="server">
<Columns> <ItemTemplate>
<usercontrol:My id="UC" runat="server"/>
</ItemTemplate>
<Columns>
</asp:datagrid>
the user control has properties like
Public Property empID() As Integer
Get
Return ID
End Get
Set(ByVal Value As Integer)
ID = Value
End Set
End Property
how to dynamically get and set the properties of usercontrol?????????????????
i tried method findcontrol() with in DataGrid ItemDataBound method but it doest working
please help me