What tags do you need to add within the asp:datagrid tags to bind columns manually.

Showing Answers 1 - 6 of 6 Answers

Rajasekaran

  • Mar 23rd, 2005
 

tag is used to add the column in the datagrid

  Was this answer useful?  Yes

RaghuRam

  • Sep 26th, 2005
 

Template Column Tags to be used for add columns to datagrid manually.Hear is the code to add user photo column by manually.Header style and Itemstyle tags are used for to set the column styles.User PhotoView Photo

  Was this answer useful?  Yes

samiksc

  • Jan 16th, 2006
 

<asp:BoundColumn> is the tag you usually use to add a bound column. You may also use

<asp:TemplateColumn>

<ItemTemplate><%#...%></ItemTemplate>

</asp:TemplateColumn>

to add a bound column to a datagrid.

  Was this answer useful?  Yes

psksenthil

  • Feb 10th, 2010
 

First we can set the property Autogenerate columns="false" in datagrid.
then, we can Add BoundColumn, Template Colum, etc.,

Thanks
PSK

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions