hi this is asp.net
what is exact defination of template column and bound column let me expalin
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
YousefPosted Apr 30, 2007, 5:20 PM
This is more of a C# forum, you might want to check forums.asp.net for ASP.NET related questions.
In any case, the answer to your question is that a template column allows you to add and customize your own web controls to the column cell, like hyperlinks, labels, text boxes...etc. A Bound column is an ASP.NET premade type column whose value is bound to a data source. ASP.NET provides premade bound columns like TextBox columns, whose Text property is bound to a value from the datasource, or CheckBox Column whose checked value is bound to a boolean field in the data source. Template Columns can also have their customized controls bound to data sources....
Hope this helps.