how do i add link column in grid view in asp.net 2.0

  • Thread starter Thread starter parez
  • Start date Start date
P

parez

Hi all,

I have a storep procedure which returns 5 columns.

i want to show only two columsn in the grid view. first column is a
link based on some 3 of the columns.

i added the following in the aspx.

<Columns>
<asp:HyperLinkField headertext="Efdfdvft" DataTextField="fame"
DataNavigateUrlFields="guid"
DataNavigateUrlFormatString="test.aspx?efid={0}" />

<asp:BoundField DataField="fdate"

HeaderText="fdfate"
HtmlEncode="False" SortExpression="Date" />
</Columns>


and in the code behind add this.

gv1.DataSource = cmd.ExecuteReader()

gv1.DataBind()


this gives me 7 columns instead of two.

what should i do ?

thanks in advance
 
Back
Top