I have a column in my database whose value is e.g. "website, deployment,http://www.qihub.scot.nhs.uk, test" and on my webpage I m using asp:Literal control to bind it. If part of this column value is http then how can we automatically make it a hyperlink so that its clickable.
Markup
<p>
<strong>Tags: </strong>
<asp:Literal id="m_eventTags" runat=server />
</p>
private void PopulateForm()
{
//blabla
m_eventTags.Text = theReader.GetString(10);
}