Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Thrud
  • Order by date
  1. Thrud

    Kill the Session when the user closes the navigator!

    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=&quot;CFID&quot; value=&quot;#CFID#&quot;> <cfcookie name=&quot;CFTOKEN&quot; value=&quot;#CFTOKEN#&quot;>...
  2. Thrud

    Cold Fusion with MySQL

    You don't say which operating system you are running on.
  3. Thrud

    Defining #Application.RootPath#

    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=&quot;D:\test\test\&quot;> for example. I suspect...
  4. Thrud

    One form field to update two db fields in a record at once?

    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...
  5. Thrud

    Loosing session variables

    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...
  6. Thrud

    CSS and IE

    Really need to see the actual code in the style text to answer this one. </thrud>
  7. Thrud

    Big problems with Netscape Navigator 4.7

    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...
  8. Thrud

    Page Wonky In Smaller Screen Size

    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...
  9. Thrud

    Passing values to CF variables in JavaScript

    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...
  10. Thrud

    CFSCRIPT and TAGS

    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...
  11. Thrud

    max cookies

    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...
  12. Thrud

    cfinput and javascript onfocus

    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...
  13. Thrud

    broken javascript in included file

    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...
  14. Thrud

    Use of Cflock (performance issues)

    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...
  15. Thrud

    manipulating the query recordset programmatically

    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...
  16. Thrud

    manipulating the query recordset programmatically

    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...
  17. Thrud

    how do you submit form data to a person readable email?

    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>&lt;form action=&quot;mailto:address@place&quot...
  18. Thrud

    dreamweaver problems in netscape

    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?&nbsp;&nbsp;If you do decide to take the plunge, you...
  19. Thrud

    rollovers

    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.
  20. Thrud

    Netscape problems if window is not maximised

    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...

Part and Inventory Search

Back
Top