1
Reply

The difference between Bound Column and Template column in Data grid view in asp.net?

Manoj Kumar

Manoj Kumar

Dec 24, 2016
632
0

    Bound Column is the value directly bound from database column, for example we directly give data source column name in bound field. In some case, we need to concatenate the two different data source columns into one we can use this template column field using eval keyword, example give below eval("FirstName") + " " + eval("LastName")

    Manoj Kumar
    December 24, 2016
    0