It would help if you detailed how the session was maintained.
Assming that you are using simple session variables, then
place the following in your Application.cfm file
<cfcookie name="CFID" value="#CFID#">
<cfcookie name="CFTOKEN" value="#CFTOKEN#">...
Why go to the touble of using an Application level variable?
Presumably if you are running an application you have an Application.cfm file that is included into each and every page so you can set simple page level variables
<cfset imagepath="D:\test\test\"> for example.
I suspect...
If I understand correctly you have answered your question already in your first posting. You can dynamically place two items of information in the value of the select box on the form page and separate these with a delimiter (a comma for example).
On the action page seperate out these two items...
Difficult to answer without more information.
Usually this type of problem is caused by a coding or logical error, especially when some session variables are still present (which means that ColdFusion has retained the session id for the user).
A classic problem that can cause this effect is...
Netscape does not see the world in the same manner as IE
The problems are almost certainly due to tables, Nestscape is fussy about how tables are laid out.
General rules are
be careful about mixing percentage widths and heights with absolute widths and heights
ensure that every cell has...
somewhere between 50 and 60 percent of users are viewing at 800 x 600, you should really test you pages at all common resolutions. You page will either be fixed width or proportial width (%width).
If fixed width it will look exactly the same on any resoutions expect that scroll bars will be...
Java script is client side and ColdFusion is Serverside.
variables in Javascript are stored in the clients computer memory and variables in ColdFusion are stored on the Webserver so there is no direct access.
Nothing you do in Javascript will effect a variable on the server until the browser...
Javascript is client side hence although it works hand in glove with ColdFusion, it cannot be compared with Javascript
Regular ColdFusion tags cannot be used within cfscript however functions expressions and operators can.
For instensive serverside number crunching a brief jump into cfscript...
I belive that the limiting factor applies to Netscape Browsers, however consider, if any domain could set any number of cookies imagine how much cookie information you could accumulate on your hard drive. All sorts of maniacs could store piles of wasteful information on your disk.
Cookies...
The first step is to understand that for validation of cfinput all ColdFusion does is dynamically create its own client side Javascript validation to download to the browser. I always write my own Javascript validation as this gives me more control in the long run.
To acheive your goal: the...
janinja
It is difficult to tell what is going wrong, however I would begin debugging by adding a button to the a page that is including the javascript. Make the onClick event hand for the button start the clock if the clock starts the javascript is ok. Also add an alert message to the page...
I am currently reviewing a ColdFusion site architecture. <br><br>The datasource name for the entire application is stored as an application level variable and all queries are subsequently enclosed within a cflock tag. At the moment the tags have the default Exclusive lock so the first thing to...
Thanks for the feedback. In future I will be using cfoutput to display query results. <br><br>As these modules were already partially implmented using cfgrid, I stuck with it but in these cases it was appropriate to allow the user to search further within the results obtained particularly as...
I am working on some internal administration modules for website using ColdFusion Enterprise Server 4.5. <br>There are various search modules displaying query results in a cfgrid (already specified and partially implemented hence cannot switch to cfoutput).<br><br>I want to be able to display...
I may have missed the point but I gather you simply want to use a mailto to send form data via the surfers email sowftware without getting all that &ffh=334&fdfh=121 rubbish.<br><br>If so put the following in the form tag.<br><form action="mailto:address@place"...
How long is a piece of string? IE can do things that NN cannot, however as DW tries to produce crossbrowser code I have found that I can always find a way to tweak pages generated from DW to work in both browsers.<br><br>How long do you have? If you do decide to take the plunge, you...
Learn Javascript and Dynamic HTML, or learn Flash unfortunately you are heading out of WYSIWYG web editing land. <br><br>Dreamweaver help you assemble the pieces but you are going to have to program them.
Firstly not a DreamWeaver glitch if you are previewing in a browser that is what you get. You are not viewing through Dreamweaver.<br><br>My guess is that the <b>content</b> of the navbar does not fit. It does'nt matter what size you specif the table the content is king is if does not fit in the...
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.