Well, i used it for a result which comes from search, but you also can use it for every kind of stuff. Each time you have a file from SharePoint in your result set and you would like to provide an icon for the type of document, e.g. html, word, excel, pdf or something like this, you can use the built-in function of SharePoint. You do not need to code it from scratch.
It is really simple as you can see
[sourcecode language=”csharp”]
protected string getIconUrl(string itemUrl)
{
string iconUrl = string.Empty;
iconUrl = “/_layouts/images/” + SPUtility.MapToIcon(SPContext.Current.Web, itemUrl, string.Empty, IconSize.Size16);
return iconUrl;
}
[/sourcecode]
The trick is done by SPUtility.MapToIcon
Try it and enjoy creating icons next to your files without having much to do.
..:: I LIKE SHAREPOINT ::..
Leave a Reply
You must be logged in to post a comment.