Is it possible to开发者_Python百科 put UpdatePanel on just one of Gridview Columns?
Thanks.
The UpdatePanel would have to update several disjointed <td>
elements instead of a single <table>
. To my knowledge, that's not possible.
But maybe you could put one UpdatePanel
with UpdateMode set to Always
around the contents of each <td>
(using e.g. a TemplateField).
精彩评论