I want to show the column, yes. I just don't want to show the column's
header. Was hoping to do this in the .aspx and not the code behind.
Thoughts?
...
more >>
This is probably a very simple problem but i would appreciate some help.
I have wired up a datagrid button with the following code.
Sub AddProduct(sender As Object, e As DataGridCommandEventArgs)
Dim ProductID As Integer = CType(dg.DataKeys(e.Item.ItemIndex), Integer)
' Create the c...
more >>