-
i was having some problem yesterday on setting the border color of the datagrid. setting the BorderColor property of the datagrid will set the outer box border of the html table together with the borders of the table cells. since i will be using the same styles for most of the datagrids used in my web...
-
This is to expound more on my previous post here regarding the behavior of datagrid's events. I tried to refactor my codes one time on a webform with a grid on it. Most of my ItemCommands has similar routine, obtain the PK id of the record from the grid’s datakey collection, instantiate the corresponding...
-
You always want to obtain data on the ItemCommand event of the grid. Usually, you will want the PK of the data you have binded to the grid which is usually passed to the next page. Initially, I found implementations where the ID's are hidden columns of the grid. But then data will be fetched from the...