Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含多列的网格视图,但是我只想更新数据库中的这些列之一。我已将所有其他列设置为只读,以便唯一可编辑的字段是我要编辑的字段,但是当我更新此字段时,所有其他字段都会被删除,但我希望它们保持不变。我该如何做到这一点?谢谢
使gridview 字段为TemplateFields,然后您可以访问字段的EditItemTemplate。在 editItemTemplate 中,代替 Textbox(默认情况下),您将文本框替换为您不需要编辑工具的字段的标签。
类似的问题在这里http://forums.asp.net/t/1099084.aspx/1
当您更新数据库值时,您还可以更新所有其他只读值。并且每次更改一个可编辑的列值。