Create link inside datagrid column to open new window

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I like to create a datagrid that has a column of links and one of these
links is clicked, a new browser window pop up and shows the aspx specified in
the link.

How do I do that?
Thanks in Advance
 
Hope this gives some idea

<asp:HyperLinkColumn ItemStyle-Font-Bold="True" HeaderStyle-Wrap="False"
HeaderText="Column Name" DataNavigateUrlField="variableName"
DataNavigateUrlFormatString="Page.aspx?ParamNam={0}"
DataTextField="variableName"></asp:HyperLinkColumn>


Thx Sileesh
 
Back
Top