I want to load a CFM application in an iframe. the application is on different web server. But I want to hide the application's header and footer file in the...
You'll need to use CFHTTP to fetch all pages from the external URL and if they use session management, you'll need to store and update any cookies sent from...
Thanks a lot. The problem is I have a .NET application on one server, I try to use Iframe to display another CFM application which is on anther server. So I...
In the src of the iframe you could pass a url parameter and on the CFM side... look for that url param. If it exists you could comment out the header and...
Yes, I try it, It will work fine for the first page in iframe. But when I click any links inside the iframe, it still shows the header. I guess the parameter...
I would catch the request in a cookie... session variable or whatever you are using to track sessions. Then look for it on in the header/footer files and...
Since the two applications are located on different server, can I use CGI variable to detect host address to control the displaying of the header file? Mandy ...
Nope - CGI will only tell you information about your own server and the remote client. Just set a cookie if the URL variable exists and alter your code that...
I have inherited a project that uses CF_WIZFORM extensively and have avoided breaking it (until now) while adding and using new fields. I am stuck with one...
I think your problem is here. You can't check for the value of the checkbox... only if it is checked or not. if(document.WizForm.Coffee.checked==false) { ...
My form will have two dropdown/pulldowns. The first contains ten states and the second contains fifty cities, five for each of the ten states. If no selections...
Maybe this'll help get you started...? http://quickselect.riaforge.org ... -- John Bliss IT Professional LinkedIn: http://www.linkedin.com/in/jbliss [Non-text...
There's a custom tag that does the trick nicely. I cant find the download, will forward if I can. It's called TwoSelectsRelated.cfm ... states and the second...
Hello everyone, I am switching my host and have cf setup and reading/verifying test connection in the program my host uses, which is Plesk. When I go to the...
It sounds like you are using the database method to store 'client' variables. Go the the coldfusion administrator and add your database as the client storage...
You CF could be seeing the DB but you don't have the storage set up correctly. In client variables in the administrator you need to point the Default Storage...
I have a bar chart, Y axis is count (total calls) and X axis is cities. The values range from 2 to 155. What I have to do now is show the total sales amount...
thanks. that is the hunch we had too but couldn't get into the cfadmin itself to change it. take care. ... correctly. In client variables in the administrator...
I want to combine 3 charts in one, so I have 3 chart series. One is bar, one is line, and the last is scatter. The scatter will display a dollar amount so I...
I need to know what is being passed to a webservice we have set up and adding cfmail isn't sending anything out. The file is a cfc, if that is the problem....
you can copy and paste the cfc code in a separate cfm page and test it out regarding the cfmail problems ..... you can check info abt the unsent mails in logs...
Unfortunately, the message never made it to the spooler. The reason I am doing this at all is to find out which web developer company is supporting a...
You could try to create a proxy or pass-through CFC that takes in all the same parameters, logs them to a file, and then calls the true CFC passing the...
What is cfml file extension (.cfml) in coldfusion 8? Is it use for what reason? What connection it has with database? Regards [Non-text portions of this...
In earlier days it allowed the CF engine to know which pages to parse. That still true nowadays? Database access isn't necessary if you're site is simple, like...