Hi,
I have a datagrid on my web form and that grid has some links in it. There is another hyperlink outside the grid. I need to implement something like when I click on the link inside the grid, the outer link should not be visible.
Any idea....
Any kind of help is appreciated.
Thanks.
Regards,
Pooja.
Loading
Posted Jun 26, 2006, 1:46 PM
add the template column for add linkbutton and then give the command name="string" in the property of the linkbutton
inside the itemcommand of the datagrid function
use this code
if(e.commanName=="string")
Hyperlink1.visible =false;
try this and tell the result