AxpDataGrid

AxpDataGrid.SetGridFreeFormatCellByCol Method 

Combine the values of data columns with your own text or html code for a specific column

[Visual Basic]
Public Sub SetGridFreeFormatCellByCol( _
   ByVal Column As Integer, _
   ByVal Value As String _
)
[C#]
public void SetGridFreeFormatCellByCol(
   int Column,
   string Value
);

Parameters

Column
Column number starting at 1
Value
a string containg any valid Html code fitting inside a TD cell.

Remarks

Data fields must be enclosed in a pair of # -characters
Example.
Make a hyperlink to another aspx displaying two data fields, FIRSTNAME LASTNAME and using the datafield ID in the href

[Visual Basic]
SetGridFreeFormatCellByCol(3,"<a href=""userdetail.aspx?ID=#ID#"">#FIRSTNAME# #SURNAME#<a>")

See Also

AxpDataGrid Class | Axezz.WebControls Namespace