Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeUsing DNN Platf...Using DNN Platf...Using Modules a...Using Modules a...Module Members ListModule Members List
Previous
 
Next
New Post
1/14/2011 6:56 PM
 
Hi,
I want a module that simply displays a public list of users with a link to their profile. Before, there was one but I do not see it on CodePlex. On snowcovered, there are results for User Directory but it is too advanced and expensive for what I want to get.

Do you know where I can download this module type please ? Do you plan to integrate it into the core one day, I'm surprised it is not possible.

Thank you.
 
New Post
1/14/2011 9:34 PM
 
There are several examples of this type of display available on various blogs.  The problem is that most are too simple and the snowcover modules are complex and can be expensive.

If you want to give the Reports Module a try -- I recommend Joe Brinkman's blog post on a listing he created.  The report module comes with DNN, so there is no cost, other than your time.  see http://blog.theaccidentalgeek.com/pos...

Joe has additional blogs that show alternative ways of creating a User Directory.

Hope this helps.
Paul.
 
New Post
1/15/2011 9:48 AM
 
Thank you Paul,

This article seems interesting. If i don't find any existing module, i created one by using it.
 
New Post
1/15/2011 9:17 PM
 
I tested the Reports module from the article of Joe Brinkman, it's perfect !

This is the XSL I created, it can be interresting for community :

<?xml version="1.0" encoding="UTF-8"?>
  
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl" >
      
<xsl:output method="html" indent="yes"/>
  
  
<xsl:template match="/">
  <html>
  <body>
  <table border="1" cellpadding="10">
    <tr bgcolor="#9acd32">
      <th>Profile</th>
      <th>Register</th>
      <th>Region</th>
      <th>City</th>
    </tr>
    <xsl:for-each select="//DocumentElement/QueryResults">
    <xsl:variable name="UserID"><xsl:value-of select="UserID"/></xsl:variable>
    <tr>
      <td><A href="/ProfilUtilisateur/tabid/499/userId/{$UserID}/Default.aspx"><xsl:value-of select="DisplayName"/></A></td>
      <td><xsl:value-of select="CreatedOnDate"/></td>
      <td><xsl:value-of select="Region"/></td>
      <td><xsl:value-of select="City"/></td>
    </tr>
    </xsl:for-each>
  </table>
  </body>
  </html>
</xsl:template>
 
Previous
 
Next
HomeHomeUsing DNN Platf...Using DNN Platf...Using Modules a...Using Modules a...Module Members ListModule Members List


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out