Hi everybody,
I built a DNN module that implements ISearchable. Everything is working fine. All items appear in the search results and in the RSS syndication results.
The problem is that when I click in one search result that points to my module the link includes the ItemID that lets me show the item detail page (or panel) - that's what I want - but when I click in one of the syndication links, the link doesn't include any parameter.
I'm including the parameter I want in the guid and it does appear inside the item tag when I see browser source code of the rss.aspx that DNN generates. When I click in the RSS link it just points me to the page with my module but doesn't have any parameter so I have no way of knowing what Item to show.
Here's what I'm calling: SearchItemInfo("Title", "Description", 1, [DATE], ModInfo.ModuleID, "DUVIDAS_" & ModInfo.ModuleID & "_" & ItemID.ToString(), [CONTENT], "ID=" & ItemIDToString())
Please can anyone tell me what am I doing wrong or if this is a DNN bug? Thanks a lot!