Adammer Elemento Skin Giveaway via Twitter

Winners Announced!
11/02/2009
Congratulations to:
for winning our first Twitter skin giveaway!
A special tip of the hat to @tommorgan for his Elemento haiku. Well played sir.

Winners Announced!
11/02/2009
Congratulations to:
for winning our first Twitter skin giveaway!
A special tip of the hat to @tommorgan for his Elemento haiku. Well played sir.

Greytness, a DNN skin that is clean, simple, sleek, and FREE! (as in beer)
ArchitectX was such a huge success, we’ve been busy with custom skin development since its release in January 2008. Greytness is our way of giving back to the DNN community which has been a big part of our success.
As its name suggests, Greytness is a single color grey skin (more colors soon). It includes 18 containers which can be arranged with great flexibility in its 21 panes.
Greytness is written in valid XHTML 1.0 Transitional, valid CSS level 3 code, and does not contain any tables.
Read more…
When using the DotNetNuke 4.x search and no results are returned (search didn’t find content that matched the search criteria), this code will display “No Search Results Found” instead of the displaying an empty search results page.
We’ve also modified the search result item layout to make the page easier to read.
NOTE: DNN 4.x ONLY, not compatible with DNN 5.x.
DNNROOT\Admin\Search\SearchResults.aspxDNNROOT\Admin\Search\SearchResults.aspxWe’ve noticed that most or our clients find the default DNN calendar font too small. That’s why we usually add our own Events Theme for use with our custom DNN skins. You can download it for free and see if it works for you.
Leave a comment if you have any suggestions for improvement or just want to say how much you liked it.
Installation Instructions Read more…
This tutorial describes one of the many ways to add a Flash Video (.flv file) with video controller to the Text/HTML Module in DNN.
We will use 5 files for this tutorial. Read more…
We released ArchitectX v.2 the latest version of our most popular DNN skin. This newest version includes full DNN 5 support.
Best Practices
This is a very simple (and portable) SQL statement that will list the email addresses of all members of a DNN security role by the security role name.
This is useful if you use 3rd party newsletter or email listserv software and need the email addresses of all members of a DNN security role.
SELECT u.Email FROM Users u, UserRoles ur, Roles r WHERE r.RoleID = ur.RoleID AND ur.UserID = u.UserID AND r.RoleName = 'Registered Users'
You can replace 'Registered Users' with any Security Role name.
This can be executed from the Host>SQL page or using the Microsoft SQL Server Management Studio.
Question: How can I add an HTML <form></form> element to the Text/HTML module in DNN?
Problem: When editors add a <form></form> tag to the Source of the Text/HTML module, the <form></form> tags are removed after they click the Update link on the “Edit Text/HTML” form.
Cause: ASP.NET only allows one form per page and by default creates its own form just inside the <body></body> tags.
Solution: Here’s an example form we will add to our Text/HTML module.