UpdatePanel inside TemplateField
ASP.NET
1
Posts
1
Posters
0
Views
1
Watching
-
hi can i update/insert record directly from markup if i use UpdatePanel inside asp.net GridControls (GridView, DetailsView, FormView...) using SqlDataSource this is what i am trying to do
<%#Eval("html") %>
i can bind "html" field to "tb" TextBox, but executing update or insert command of "gv" i cant update/insert "html" field as long as it is inside UpdatePanel. i can dynamicly find control ("tb" TextBox) using RowUpdating event and set value that way, but i am just wondering if this can be done with no extra code?