A Fusebox forum has been started here on Tek-Tips. I recommend all "fusers" to join up so we can begin helping each other.
Best Regards,
FelixTKatt FTK
There is a fusebox mailing list on topica. They often talk about such problems. Check there. As far as I know, it has not been modified for MX yet, but there are many work-arounds that you can use. FTK
SERVER_SOFTWARE
The name and version of the information server software answering the request (and running the gateway).
Format: name/version
SERVER_NAME
The server's hostname, DNS alias, or IP address as it would appear in self-referencing URLs.
GATEWAY_INTERFACE
The revision of...
I did something that is almost identical to what you are trying to do. In my case, I had the first select tag choose a group of contacts and the second select had the individual emails of each member of the group. All of my select tags were (however) populated from a database. Here is the...
Is your question "How do I get an image stored in a database to be displayed on the page?"
My answer would be to not store the images (or image files) in the database, but keep the filenames in the database instead. That way, when you want to reference the images in your template...
I'm attempting to create a (very) weak email validation bit using a simple CFIF and a few string functions. Here's the code:
<cfif (FindNoCase(emailFrom, ".com") IS NOT 0) OR
(FindNoCase(emailFrom, ".net") IS NOT 0) OR
(FindNoCase(emailFrom, ".org")...
After getting this to work (or so I thought), I realized that the submit() refuses to work on Macs. Don't know why, but it doesn't (both in Netscape and IE).
In the spirit of sharing and learning. I am going to publish a page on my site for others to pour over and figure out what is up with...
The final code I ended up using was:
<script language="JavaScript">
<!--
img1On = new Image(); // Active Images
img1On.src = "deleteOn.gif";
img2On = new Image();
img2On.src = "replyOn.gif";
img3On= new Image();
img3On.src = "replyallOn.gif";
img4On...
I ended up replacing the input tag with an image tag and using the onClick method to submit the form instead of the input tag.
Thanks for your help.
FTK FTK
I'm trying to create a simple image swap onMouseOver and onMouseOut. The only twist is that the image I want to swap is the submit button on a form. I assume I have to link the input tag itself (because the onMouseOver method belongs to the anchor tag) but I can't get the src parameter to...
I find this curious and can't figure out what is going on. Perhaps the email server I am using causes the problem, but I can't tell. Perhaps someone here can.
I want the "mail_to" field to populate automatically based upon the message retrieved. However, the input tag is not...
Now here's a follow-up question. I'm trying to unckeck a checkbox (yes/no) field in my database by using a hidden field with the value of 0 (or No or FALSE; I tried them all.) However, the database is not unselecting the checkbox in the database. I've tried with both CFUpdates and SQL Updates...
I'm assuming that the solution you proposed will rip out the tags, not the text between them.
But that's ok! I realized (read as: "was told") that if the bolds are replaced with comment tags, that will get rid of any of the text I wanted to rip in the first place.
Thanks for all...
I have a query that pulls a paragraph of HTML text from a database field. In that text there are italicized and bolded elements that I would like to have removed before I display the text on the page.
1. Would it be better/easier/classier to do this in CF or JavaScript?
2. How would I go...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.