Thanks for replying so quickly.
I have added a hyperlink to my grid, this is the actual code
<asp:HyperLinkColumn HeaderText="Details" DataNavigateUrlField="details0"
Text="<img src='images/view.gif' border='0'>"
DataNavigateUrlFormatString="javascript:varwin=win dow.open('Log_Details.aspx?detail={0}', null, 'top=400, left=400, width=600, height=250');"></asp:HyperLinkColumn>
I just have two questions
In the ItemDataBound event i check that we are looking at data row
(not header or footer) but am not sure how to reference the actual column to make it visible
Secondly
if the user clicks on the gif, i want to open a popup with some text
which it seems to work ok. But when the popup opens on the bottom of the form, the calling form which has the grid on it blanks out and only the tag [Object] is visible.
Any ideas what i am doing wrong????
Thanks
Guy
|