Websitepanel and ColdFusion DSN

2013-06-28 Thread Meghna Chopra
Hi, Is there any API or add-on available so that we can create ColdFusion DSN using Websitepanel control panel? I tried Googling but could not find any solutions :( There is a pending request for this feature:

Websitepanel and ColdFusion DSN

2013-06-28 Thread Meghna Chopra
Hi, Is there any API or add-on available so that we can create ColdFusion DSN using Websitepanel control panel? I tried Googling but could not find any solutions :( There is a pending request for this feature:

CFMail Question

2013-06-28 Thread Robert Sneed
I hope someone can help me with this. I'm kind of stuck on the conditional. I have a newsletter signup form that includes a check box that is check by default. label for=mailListinput checked=checked id=mailList name=mailList tabindex=14 type=checkbox value=0 width=5px /span class=checkboxI

Re: CFMail Question

2013-06-28 Thread Justin Scott
By default the form field will only exist if the checkbox is checked, so you could do: Subscribe to newsletter? cfoutput#yesNoFormat(isDefined(form.mailList))#/cfoutput As an aside, in the anti-spam and e-mail deliverability communities it is generally considered a bad practice to have these

RE: CFMail Question

2013-06-28 Thread Mark A Kruger
Robert, Since the box is either checked or Unchecked that's all you need. You don't really need to worry about the value at all. If the form field shows up then the user checked the box. That's how checkboxes work. Subscribe To Newsletter? cfif structKetyExists(form,'maillist')YescfelseNo/cfif