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.
我搜索了一种将属性添加到 asp.net gridview 的方法。该属性的值将在页面更改 (PageIndexChanging) 和排序事件 (Sorting) 时更改。
该属性将用于 javascript。
在我有一个隐藏字段之前,但回帖不会改变隐藏字段的值。
我试试
mygrid.Rows(0).Cells(0).Attributes.Add("myAttribute", "test")
如果您有想法或需要更多详细信息以供理解。
这应该可以将属性添加到行中。但是,属性在回发时将不可用,并且不会在回发时保存。跨回发保存的唯一方法是隐藏字段。<asp:HiddenField>控件将在回发时保存其值;您必须将其显式更改为新值。但是,它至少会在页面回发时将值发送到后端服务器。
<asp:HiddenField>