Another tip - if you would like dnn to show those details in a POPUP.
There is a trick that can be used to leverage the dnn core popup module - your site needs to have popups enabled - and you need to also edit the module settings to make sure that popups are enabled.
When you create the LINKS - instead of just a simple link - you can add a popup attribute to the url like this - assuming myHyperLink is a reference to a url.
String myTargetURL = Globals.NavigateURL(TabId, null,"mid="+ moduleid,"myQueryString="+ whateveruwant);
String myPopupTargetURL = UrlUtils.PopUpUrl( myTargetURL , this, PortalSettings, true, false);
myHyperLink.NavigateUrl = myTargetURL;
myHyperLink.Attributes.Add("onclick", "return " + myPopupTargetURL);
Basically this leverages some features inside dnn - when the HTML for the link is created some javascript is injected that allow the click action on the link to override the normal functionalty and instead cause a popup window to open.
The popup window shows the same page that you are currently on - but instead shows it in a special skin that strips out the most of the dnn elements - and by including the mid= of the current module - prevents any other modules that might be on the page from also showing.
Westa