Immagino che avrai impostato l'ID come dataKeyField del tuo DataGrid
quindi t conviene utilizzare la proprietà command:

<asp:templateColumn>
</itemTemplate>
<asp:ImageButton ImageURL="../images/x_canc.gif" width="14" height="10" runat="server" CommandName="edit"/>
</itemTemplate>
</asp:TemplateColumn>

Poi nella procedura che richiami farai:

dim cod as string
cod = TabNews.DataKeys(Cint(e.item.itemindex))
Response.Redirect("XXX.aspx?cod=" & cod)