Hi,
I have iterate an item in the item databound .and set a link to the particluar text using the below code ..
if (e.Item is TreeListDataItem)
{
TreeListDataItem item = e.Item as TreeListDataItem;
item[
"Description"].Text = "<a href=\"#\">" + 0512 + "</a>";
int j = 0;
}
My problem is to set hyper link for 0512 .I mean an underline is shown below the code 0512.
But blue colour is not appearing in the 0512 .hyperlinks shows blue colour text normally.
But here is not display 0512 in blue colour.how is it possible?
Thanks
Sindu