I have a hyperlink column in a webgrid, and I'm changing the targeturl property of the cell in the InitializeRow event, but I'l like the hyperlink to open a new window (e.g. hl.target="_blank") but I can't find a way to do this as there is no "target" attribute of a cell.
Any ideas guys?
Thanks,
Richard
use this property in the InitializeRow event
.Text = "<a href='www.yahoo.com' target='_blank'>dd</a>";
Thanks charuk, I'll give it a go.