The situation: You have uploaded a CSV file, and you now need to do something with the data in your programming. A Solution:
DotNetNuke Module Development – How To Access User Profile Properties
The situation: You need to access user profile properties in a custom DNN module for display or perhaps pre-filling a form. Here's how I handled it recently: I created a method to retrieve the profile property of interest. I could have accessed the property directly, but I wanted to customize what came back and to … Continue reading DotNetNuke Module Development – How To Access User Profile Properties
Common Function Library – HasValue()
Like many programmers, I have a Common Function Library containing generic methods I use over and over again. Here is one of them. I use this often to test if a variable or object exists and if it has any value. This is an easy way to avoid NullReferenceExceptions or other errors that would crop … Continue reading Common Function Library – HasValue()
My Love-Hate Relationship with DotNetNuke
I am an ASP.NET programmer, so when I needed to implement a Content Management System (CMS), I looked around for an ASP.NET-based system that would let me create add-ons or modules if the base package didn't do everything I want. I just knew that my clients would insist on implementing some feature or another in … Continue reading My Love-Hate Relationship with DotNetNuke
Elmah Signaling – How To Log Exceptions with Elmah but Continue Processing
Elmah is an excellent tool for web programmers. It is an extremely easy to install exception handler that logs application exceptions and sends the user to an "oops" page. It can also send an email to the developer or webmaster. But what if you want to log an error but NOT send the user to … Continue reading Elmah Signaling – How To Log Exceptions with Elmah but Continue Processing