How do I access a Control in the LayoutTemplate of a ListView control?
LayoutTemplate
ListView
I need to get to litControlTitle and set its Text
litControlTitle
Text
In case you need the VB version, here it is
Dim litControl = CType(lv.FindControl("litControlTitle"), Literal) litControl.Text = "your text"