By slhilbert on 2/24/2010 4:06 PM
We recently had a client ask us if we could pre-populate a form using the values in a querystring. The client has a Paypal form on their website and they wanted to be able to provide a promo code to their affiliates in the form of a URL containing a querystring and have it automatically populate the promo code box.
They also wanted to make sure as their clients navigate through their site that the promo code stays populated in the promo code textbox. We solved this by using a little Javascript and a cookie.
Â
NOTE: The script should fall after the input box. The name of the input box in the example is: oS0
Â
Here is the code:
Read More » |
By slhilbert on 2/15/2010 12:31 PM
Constant Contact Sign Up 1.2 Introduction The Hilbert Solutions, LLC Constant Contact Sign Up module is an easy to use Dotnetnuke module that can be used to gather information about your user's when they join your Constant Contact mailing list. Constant Contact Sign Up provides a flexible templating system to include numerous oppurtunities to gather specific information while your client joins your mailing list.
Features Easy to use Highly configurable Templated Form Templated Success Message Templated Join Button Supports the collection of over 30 unique fields. Completely Localized NEW! Multiple mailing list sign up NEW! Send welcome... Read More » |
By slhilbert on 1/8/2010 2:35 PM
All of us have seen a Dotnetnuke website where the main menu of the site is hidden behind a module. Recently we were contacted about this issue with our new module, Advanced News Ticker.Â
A quick search revealed that this is something that can be fixed at the skin level. I found the following thread on the Dotnetnuke Forum that explains how to fix the problem.
In particular interest this post:
You need to make sure you set the z-index in the css settings for the submenu items, for example, in skin.css you would have something like ".menuItemClass {z-index: 1000;}" to make sure the menu appears in front of input boxes, select drop downs, and flash. The submenu really shouldn't need any z-index setting to simply have it appear in front of modules, unless you've got some erroneous setting in your... Read More » |
By slhilbert on 12/15/2009 8:31 AM
The Hilbert Solutions, LLC Constant Contact Sign Up module is an easy to use Dotnetnuke module that can be used to gather information about your user's when they join your Constant Contact mailing list. Constant Contact Sign Up provides a flexible templating system to include numerous oppurtunities to gather specific information while your client joins your mailing list.Read More » |
By slhilbert on 12/8/2009 12:56 PM
The Hilbert Solutions, LLC Advanced News Ticker is a modern impementation of the traditional news ticker. Using the latest in JQuery technology the Advanced News Ticker provides a modern and attractive way to display new items. Advanced News Ticker has been designed from the start with ease of use in mind, so even the person with no technical experience can create and edit news items in no time. The Advanced News Ticker module for Dotnetnuke is a must have for a modern website. Read More » |
By slhilbert on 12/3/2009 11:23 AM
Read More » |
By slhilbert on 11/5/2009 11:51 AM
PowerDNN the Premium Dotnetnuke Web Hosting Company is currently running a giveaway via Twitter where if you retweet a message then you are entered into win a number of prizes. Well I did just that and today I got a call from a nice lady who said I had a choice between $100 of Omaha Steaks or an Zune HD. I picked the Zune HD of course. You can follow PowerDNN on Twitter at @PowerDNN.
|
By slhilbert on 10/30/2009 9:16 AM
Doing a little javascript these days to handle some presentation changes. I wanted to convert a State Name spelled out to the state’s abbreviations. I found a little javascript that got me started and then reworked it from there.
function changeStateAbbr(theValue){
if (theValue == "Alambama"){
document.write("AL");
}
else if (theValue == "Alaska"){
document.write("AK");
}
else if (theValue == "Arizona"){
document.write("AZ");
}
else if (theValue == "Arkansas"){
document.write("AR");
}
else if (theValue == "California"){
document.write("CA");
}
else if (theValue == "Colorado"){
document.write("CO");... Read More » |
By slhilbert on 10/20/2009 1:38 PM
I have been working with the Ultra Video Gallery module a lot lately. I am not sure what the issue is, if it is the server, the way the server has been setup, or something else but I can’t seem to pass the permissions check in the Configuration Wizard. I have done everything in the manual to get around it and have also done everything suggested over at http://www.bizmodules.net/ the module developer website that created the module.
What I have finally figured out is that if I give the IIS IUSR account full control on the website (it could work in a more limited way, such as just on the Binaries folder, haven’t tested it), and then propagate the permissions throughout the website, I can then pass the Permissions Check. I immediately go back and remove the full control permissions for the IUSR account and everything still works.Â
I hope this helps someone else out and prevents them from wasting several days trying to figure it out.
Technorati Tags: Ultra Video Gallery,Dotnetnuke,Module,Permissions,Configuration Wizard
Read More » |
By slhilbert on 9/17/2009 7:33 AM
Here is a stored procedure I am using for a Dotnetnuke custom authentication provider that I use to get the number of failed login attempts for user. Read More » |