Add/Edit Columns in DataBound DataGridView
- by Dave
I've got a datagridview that is databound from a database table. How do I:
a) Edit the displayed value for a column using the values from other columns in the row? (For example, display a URL like:
<a href="/url?param=columnA">columnB</a>
where columnA is the value from column A and columnB is the value from columnB)
b) Add an additional column using values from the other columns (similar to a.)