I have a Datagrid that I'm binding a dataset to, however I need to rename a couple column Headers(template columns) at run-time, based upon user interaction..


Datagrid1.Columns(1).HeaderText = "Heading #1"
Datagrid1.Columns(2).HeaderText = "Heading #2"


looks like it should work, but doesn't.

anybody have any solutions?