ASP.NET Setting DetailsView BoundField value from javascript
1 answer
You can try to create an EditItemTemplate, put the TextBox inside and provide it with an id of your choice.
Like this:
<Fields>
<asp:TemplateField HeaderText="Column1">
<EditItemTemplate>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
</EditItemTemplate>
</asp:TemplateField>
</Fields>
If the TextBox Text property has stuff to bind, you can use the Bind () method.
Good luck.
+1
a source to share