On a new installation of Exchange 2003, accessed via OWA, is there a fix for the failure of the 'Log Off' action. MS say close the browser, but is there a better way? The default installation at best has a page saying close the browser, and at worst issues a 404 page not found error.
There is an effective and fairly easy solution, see the explaination at
http://www.cfcomet.com/Excel/index.cfm?ArticleID=B5ED33FB-5CB1-4ACC-899689A15A0E1539
there is also an article on running macros etc.
Try changing the <cfoutput query...> to a <cfloop query...> its about 7 times faster than cfoutput, so the page processing will take a lot less time
Richard
To stop a page caching, insert the followin lines at the top of your .cfm file:
<META http-equiv="Expires" content="Now" >
<META HTTP-EQUIV="pragma" CONTENT="no-cache">
<CFHEADER Name="Expires" Value="#Now()#">
<CFHEADER...
Both tags come with full instructions attached.
Basically you design a query that contains the info you want to display in
the following format:
For three selects, the first with 3 entries, the second with 3 for each of
the entries in select one, and the third with 2 or three entries for each...
Try the following
Item 1
To force a page to open outside a frameset
<script LANGUAGE="JavaScript">
if(top.location != document.location.href)
{
top.location = 'pagename.cfm';
}
</script>
Item 2
Try removing the target, the page should open in the current frame...
Sakura
Instead of trying to write this yourself, I suggest that you try either 'ThreeSelectsRelated' or 'ActiveSelect'. Both these tags work well, the latter being able to handle more than three related select boxes.
They both use a structured query as a datasource so the page need not be...
Verity is a very powerful 'full text' search tool, which can handle and index a wide variety of file formats.
The version that ships with CF is a slightly limited in that it only has provision for only two structured fields (Custom 1 & 2).
CF accesses verity through the following tags ...
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.