Hi! Can I get access to the TextBox control (that is included in FormView) from code behind?
Code:
<asp:FormView ID="formview_NewsFull" runat="server" DataSourceID="ds_NewsFull">
...
<EditItemTemplate>
<asp:TextBox ID="newstitle" ClientID="blahblahblah" runat="server" Text=<%#Bind("newstitle_ua")%>></asp:TextBox>
</EditItemTemplate>
</asp:FormView>
Comment