I want to open new tab or pop window after clicking on the hyper link and this window contain the navigator URL ?
<asp:HyperLink runat="server" NavigateUrl='<%#DataBinder.Eval(Container,"DataItem.Path")%>'>
<asp:Image ID="product_image" runat="server" ImageUrl='<%#DataBinder.Eval(Container,"DataItem.Path")%>'
Height="20px" Width="20px" />
</asp:HyperLink>
this code open the url in same tab I want it in another tab or pop up window or any new idea ?
Try using the Target-attribute:
It will open in a new window, or tab, depending on browser setting.