J
Jim in Arizona
How do I find a control within a datalist itemtemplate from a sub
procedure that isn't a normal called procedure from a datalist (like the
update, edit, or cancel procedures)?
For instance, normally you find a control and access it's properties and
methods, like so:
Sub Update(ByVal sender As Object, ByVal e As DataListCommandEventArgs)
Dim txtPosted As New TextBox
txtPosted = e.Item.FindControl("txtPosted")
End Sub
How could I do this using a different procedure, like:
Sub AnotherProcedure()
End Sub
TIA,
Jim
procedure that isn't a normal called procedure from a datalist (like the
update, edit, or cancel procedures)?
For instance, normally you find a control and access it's properties and
methods, like so:
Sub Update(ByVal sender As Object, ByVal e As DataListCommandEventArgs)
Dim txtPosted As New TextBox
txtPosted = e.Item.FindControl("txtPosted")
End Sub
How could I do this using a different procedure, like:
Sub AnotherProcedure()
End Sub
TIA,
Jim