Hi,
I am trying to display sharepoint custom list items on an application page. There are some text fields and some hyperlink and pictures in this list. Text field values are displayed properly but when it comes to hyperlink/picutre fields, having this issue.
I have used following code to retrieve these values:
SPFieldUrlValue DestUrl = new SPFieldUrlValue(item["destinationURL"].ToString());
LabelUrl.Text += DestUrl.Url;
As a result of this code, it is just showing this in the place of LabelUrl: Microsoft.SharePoint.Client.FieldUrlValue
It might sound a basic but couldn't figure out why it is displaying it like that instead of actual url mentioned in the column.
TIA.