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 strongm 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: lwfg
  • Content: Threads
  • Order by date
  1. lwfg

    client variables disappearing

    A ColdFusion project is on a computer that was upgraded from Windows 2003 to 2008. The version of ColdFusion is 8. The project was originally done in version 3 or 4, is frames based, and stores client variables in the registry. At least 1 user can't see client variables anymore-error like "x...
  2. lwfg

    getting form values from ColdFusion programn to asp.net program

    How do you submit a form from a ColdFusion program to an asp.net program? When I try, I get an error 404. The programs are in the same directory. Submitting between ColdFusion programs works ok.
  3. lwfg

    putting an html file inside div tags

    Trying to put an html file in div tags. It works if I use method get but want post. It also works if the extension of the filename "fn" that goes to f() is cfm instead of html. What am I doing wrong? This is the dtry.html that sets up the screen and tries to put dtry1.html (further down) into...
  4. lwfg

    frame alternatives

    I'm using frames that hold pages with forms. In those forms, the action and target attributes are set by javascript according to what the user does. How do you do this without frames?
  5. lwfg

    session variable timeout problem

    Trying to get a session variable to timeout by doing this but no luck. The variable testvar doesn't go away. What am I doing wrong? In application.cfm <cfapplication name="test" sessionmanagement="yes" sessiontimeout="#createtimespan(0,0,0,10)#"> <cfparam name="testvar" default="a"> In other...
  6. lwfg

    zero day hack

    Is ColdFusion 8 vulnerable to the zero day hack?
  7. lwfg

    alternatives to frames

    I have been using frames in a ColdFusion project for years. A template in one frame brings up a template in the next etc. and users like the way things work. I'm now very used to target and action attibutes of forms. We might have a new project coming up that would be similar and people are...
  8. lwfg

    cfqueryparam-testing for null

    If the where part of query is "where date1 is null", how do you redo it using cfqueryparam?
  9. lwfg

    why simple function won't work without alert()

    Why does a() stop right clicks but b() doesn't ? function a(e) { if (event.button==2) { alert('No right click please.'); return false; } } document.onmousedown=h function b(e) { if (event.button==2) return false; } document.onmousedown=h
  10. lwfg

    vfp future

    We have a lot of programs written in VFP and are being urged to change them to something else because of VFP's future. We'd rather keep using VFP since changing to something else could take a long time and since things are working. Is staying with VFP a bad idea ? If so, what are reasons ?
  11. lwfg

    timeout

    In 1 frame, I have a timeout function that increments a cookie value by '1' every 10 seconds. If a page is requested in any frame, that cookie value goes to '0'. If the value goes to '180', all the frames go blank except for one where you can log back in. It works except sometimes the timing...
  12. lwfg

    cfschedule problem

    Can't get cfschedule to work and would be very happy to find out what I'm doing wrong. Want to get trya.cfm to run tryb.cfm every 75 seconds but get no result. Tryb.cfm works when run directly without cfschedule. THIS IS TRYA.CFM <html> <head> <title> </title> </head>...
  13. lwfg

    sql table variable to text

    I'm learning stored procedures. I'm looping through a table variable line by line and printing results to the messages tab. I need to get this output to a text file, pref with an htm extension. How is this done?
  14. lwfg

    closing or redirecting _blank

    How do you close _blank or redirect a page in _blank from outside of _blank ?
  15. lwfg

    script to stop right click seems to need alert() in it

    This script works to stop a right click from doing anything unless the alert() is taken out With it taken out, the right click does something. 1. Why is this ? 2. How do you make it work without the alert() ? function f(e) { if (event.button==2) {...
  16. lwfg

    redirect problem

    Is there a way of making a redirect so it can't be undone by right clicking and then clicking back? I'm asked not to disable the right click.
  17. lwfg

    cookies

    Making the initial value of a cookie with ColdFusion and it looks like cftoken=111;cfid=111;zzz=1 when displayed in JavaScript with alert(document.cookie). When the zzz part of the cookie is incremted by JavaScript, it looks like zzz=2;cftoken=111;cfid=111;zzz=1 etc. Will the cookie always look...
  18. lwfg

    timer problem

    Trying to make a timer. This runs onload but gets browser error something like script might take to much time and gives choice to continue or not. Got a "recursive" one working but have been told to avoid recursion. What am I doing wrong ? <script> function a() { var m1,m2=new...
  19. lwfg

    global variable question

    I have four frames, each with a different page in it and want to share a value between them without using a cookie. Is it possible to have a javascript variable that has the scope of more than one page in a frame document ?
  20. lwfg

    global var

    I have a project with 4 COldFusion pages in 4 frames. If in watch of those pages, I have a Javascript counter writing counts to a global var. 1. Are there any other scope besides cookie that can be used? 2. What would happen if more than 1 script writes to the global var at the same time? 3...

Part and Inventory Search

Back
Top