Tor,
the NavigateURL is only used when specifying the same link for all rows.
Text attribute is also static accreoss the board. If you want the link to
include a value from a data field you should use the DataNavigateURLField
with the DataNavigateURLFormatString. The same goes for DataTextField and
DataTextFormatString if you want the link text to also be dynamic. Your tag
should look something like this
<asp:HyperLinkColumn
HeaderText="View Detail"
DataNavigateUrlField="ku_id"
DataNavigateUrlFormatString="~/Admindetail.aspx?ku_id={0}"
DataTextField="ku_id"
DataTextFormatString="Details for Record {0}" />
Good luck,

Signature
Mohamad Elarabi
Lead Developer. MCTS, MCPD.
> When I insert the complete querystring into the NavigateUrl tag this
> hyperlink works fine within the GridView.
[quoted text clipped - 22 lines]
>
> TIRislaa
Tor Inge Rislaa - 20 Dec 2007 20:02 GMT
Thanks a lot, just what I needed.
Regards
TIRislaa
> Tor,
> the NavigateURL is only used when specifying the same link for all
[quoted text clipped - 43 lines]
>>
>> TIRislaa