I am dynamically adding Html to a server-side DIV this way:
innerHtml = innerHtml + string.Format(@"<div><span>{0}</span><br/>{1}</div><br/>", dr["Date"], dr["State"]);
That’s fine, problem is that Title column has normal text mixed with link ( it is the twitter state field), but the links are not rendered as hyperlink but as normal text and the user cannot click the links.
How do I address this problem?
Thanks
Where is your Title column? Please add your code for the same.
If your link is dr[“state”] your code will look like this.
In short add the anchor tag (
<a href='Your link'>Link Name</a>) in your string.