GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Interview Questions  >  Microsoft  >  DotNet

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



January 01, 2006 04:50:27 #3
 samiksc   Member Since: October 2005    Total Comments: 231 

RE: What tags do you need to add within the asp:datagr...
 

<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.

     

 

Back To Question