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 SkipVought 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: *

  1. bankholdup

    I need to creat a login/password page in coldFuion

    application.cfm loads with EVERY cfm file in the current directory. What if you don't need all the same variables loaded in each page? What if something desperately needed in all other pages absolutely can not be in 1 particular template? application.cfm will load it into that page anyway. Using...
  2. bankholdup

    Error message for CFIF statement - required attribute INSIDETEXT

    you can't use <cfif> without giving it 2 (or more) option to compare. <CFIF #Form.DateQueried# NEQ &quot;&quot;> this came straight from the previous code you had. It basically says, &quot;if the value of form.datequeried is not equal to &quot;&quot; (nothing) then do whatever.&quot; You are...
  3. bankholdup

    Session maintenance

    Use <cflock> every time you access the session variable. And no, nothing on the client side (not a bit, pardon the pun). bankholdup
  4. bankholdup

    AOL/Browser help

    I think IE returns Mozilla to show that it is Netscape compatible. At least I think I heard that somewhere. There are probably better ideas, but you might use some javascript to redirect the page to another page with the CF include. But make sure to have a notice about what the user is missing...
  5. bankholdup

    Error message for CFIF statement - required attribute INSIDETEXT

    Can you post some code? Do you have any empty <cfif></cfif> pairs? bankholdup
  6. bankholdup

    I need to creat a login/password page in coldFuion

    you still need to use <cfapplication> to establish the use of session, application and client variables. It is just used in a different file wich can be added to files (with <cfinclude>) as needed. I know I won't do much good if I try to explain it, check out www.fusebox.org for all the details...
  7. bankholdup

    Can't get rid of this error.. tried everything :/ Err&Code included,

    Well, the mystery is solved. the problem was actually varible on the preceeding page. It was a number type, but bboehle had it in ''. Which caused the data mismatch error. Micah, take a look at all your variables in the where part of your query and make sure that anything that isn't...
  8. bankholdup

    How to display all session variables (and structures)

    of course i mean: try changing all instance of #session# to #session.sessionid#. and no i'm not smoking anything! bankholdup
  9. bankholdup

    How to display all session variables (and structures)

    try all instances of changing #session# to #session.sessionid#. bankholdup
  10. bankholdup

    I need to creat a login/password page in coldFuion

    Wow, this is a long and involved thread! Just to throw in my 2 cents, seesion variables are THE way to handle logins. They reduce security risks (because they are in server memory) and you don't have to worry &quot;what if the user has cookies turned off&quot;. But the biggest thing I have to...
  11. bankholdup

    Is there a limit to the number of recipients you can have in a CFMAIL

    Can you post some code? bankholdup
  12. bankholdup

    Session maintenance

    Session variables are stored in the server's RAM, so you won't find cookies and you don't need to pass variables. However, it is important to use <cflock> when dealing with session variables to completely maintain seperate sessions. bankholdup
  13. bankholdup

    &lt;B&gt;Tabs in ColdFusion Pages?&lt;/B&gt;

    Maybe I wasn't looking in the right place, but I didn't see the tabs you are describing at Allaire. However, most tab-looking navigational structures are just dressed up tables or layers. bankholdup
  14. bankholdup

    Can't get rid of this error.. tried everything :/ Err&Code included,

    Could you email the pages involved? It's a lot eaiser to look at all the code in one shot. Just email it to bank_holdup@yahoo.com. bankholdup
  15. bankholdup

    Anyone use ODBC Scalar Functions??

    What happens if you try it without the '' around the variable? bankholdup
  16. bankholdup

    Can't get rid of this error.. tried everything :/ Err&Code included,

    Try outputting the value of #form.addedby# to the new page, before doing anything else, make sure it is getting an appropriate value. bankholdup
  17. bankholdup

    How can I link a ColdFusion Page to Microsoft Outlook?

    I've never done it, but it can probably be accomplished using the <cfobject> tag. bankholdup
  18. bankholdup

    OLE DB's and Data Retrieval

    Sorry, can't help you with the OLE DB. But it is possible that the date comparisons aren't made correctly. Try using #dateformat(now(), &quot;mm/dd/yy&quot;)# or even #createodbcdate(now())# in your where statement. bankholdup
  19. bankholdup

    Can't get rid of this error.. tried everything :/ Err&Code included,

    What kind of values does the AddedBy field contain. I would assume it contains a text value, but if it contains a number then the error message makes more sense. For instance if you have a table of people and each person is assigned a unique ID and then that ID number is inserted into Magic as...
  20. bankholdup

    CFFILE upload prevention if not file exisits...

    This is just a shot in the dark, but the error message syas: No data was received in the uploaded file '\.' . Why not modify you <cfif> tag to make sure the filename is not just '\'. If it is, no upload, if it isn't... bankholdup

Part and Inventory Search

Back
Top