We read from XML and create columns in asp gridview. Also same XML is used to create columns in a data table. We populate that data table with desired data and bind data table to gridview using server side code. Now, we want to display hyperlink in gridview and not sure how to manage it. Since we are not using RowDataBound method.Code is as under:\[code\]foreach (XmlNode columnNode in columnNodes){dc = new DataColumn(columnNode.Attributes["ColumnName"].Value,Type.GetType("System.String"));dt.Columns.Add(dc);boundField = new BoundField();boundField.HeaderText = columnNode.Attributes["ColumnDisplayName"].Value;boundField.DataField = columnNode.Attributes["ColumnName"].Value;boundField.SortExpression = columnNode.Attributes["ColumnName"].Value; grdView.Columns.Add(boundField);} \[/code\]where dc is datacolumn, dt is data table and grdView is grid view.Any help?