I need your help on this. In my copde I am using data table ... manually creating rows/columns in DT and populating them and lastly binding it to GridView.
I want to add a cell to each datarow in data table and the cell in turn will hold a HTML Control (HTML Anchor Tag).
Say, my current DT has 2rows and 3 cols as below
server blah blah abc xyz 123 def vbh 345 Now, I want to do further processing on servername (on col1) and add a extra col to DT which will hold HTML Anchor Tag. the details can be seen clicking on the HTML Anchor tag. So, ultimately the DT should look like below:
server blah blah abc xyz 123 HTML LINK def vbh 345 HTML LINK Please tell how can I do this? i.e, add a separate cell to DT and add the HTML control to that bewly added cell.
Thanks. Rahul