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 TouchToneTommy 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
  • 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

    It works with GET. Later I want to send values. Maybe best to use cfm for that?
  4. lwfg

    putting an html file inside div tags

    Yes, there is a file with that name. When fn is html, responseText is an error message "the HTTP verb used to access this page is not allowed" and status=405. Sorry didn't check this earlier.
  5. lwfg

    putting an html file inside div tags

    I think it's set to work with POST since that's what I use with ColdFusion and since in the script above, f(), when req.responseText's value is the name of an image file and content's innerHTML is set to '<img src='+req.responseText+'>', the picture displays. In f(), the html file will show when...
  6. lwfg

    putting an html file inside div tags

    I think it's set to deliver content with POST since on that server I use method POST with ColdFusion and the script above, f(), with img tags around req.responseText, can display a picture with POST.
  7. 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...
  8. 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?
  9. lwfg

    session variable timeout problem

    Never mind.
  10. lwfg

    session variable timeout problem

    Meant to say <cfparam name="session.testvar" default="a">.
  11. 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...
  12. lwfg

    zero day hack

    It is apsa13-01 on Adobe's security. They say only 9 and 10 can get it.
  13. lwfg

    zero day hack

    Is ColdFusion 8 vulnerable to the zero day hack?
  14. 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...
  15. lwfg

    cfqueryparam-testing for null

    Thank you for that.
  16. lwfg

    cfqueryparam-testing for null

    If the where part of query is "where date1 is null", how do you redo it using cfqueryparam?
  17. 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
  18. 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 ?
  19. 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...
  20. 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>...

Part and Inventory Search

Back
Top