franklin1232
IS-IT--Management
I have a hyperlink column in my data grid. The column contains part numbers. When the user makes changes to other fields and hits update I need to capture the hyperlink column value.
In the update event this is my could
Dim strpartnum as string = e.item.cells(0).text
The strpartnum variable is always blank. The other fields are accessible from the cells collection why not the hyperlink column? The documentation on the hyperlink column class seems to show the text property is valid and should work. How can I get the part number? I am trying not to go to the underlying dataset for the value.
In the update event this is my could
Dim strpartnum as string = e.item.cells(0).text
The strpartnum variable is always blank. The other fields are accessible from the cells collection why not the hyperlink column? The documentation on the hyperlink column class seems to show the text property is valid and should work. How can I get the part number? I am trying not to go to the underlying dataset for the value.