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!

Recent content by safaritek

  1. safaritek

    Getting sequential row blocks for page by page output

    Additionally it is just a simple query at this point, which is why I know it needs to be altered. An example of how it is called thus far, is like this: SELECT Column1,Column2,Column3 etc FROM Products WHERE Active = 1 ORDER BY CATALOGNUM There is a KeyID column as an identifier specific to...
  2. safaritek

    Getting sequential row blocks for page by page output

    Sorry - I meant to include the details Right now I have SQL Server 2000 and we run all queries via the SQl ODBC driver on a Win2003 machine
  3. safaritek

    Getting sequential row blocks for page by page output

    This is a web catalogue application, just for reference. Until lately, we had been querying the database for all products and then caching that query. We then let the application server use that cached query to show 10 products per page using a standard next/previous page format. The...
  4. safaritek

    Trying to create 1 form surrounding multiple file upload fields

    If you are running 701 or under, there is a glitch in the upload process that causes a directory to be created based on the file name you are trying to force, rather than simply renaming the file. This is an acknowledged issue by MM/Adobe and there is a Hotfix available...
  5. safaritek

    Cfdocument Question

    If the user is actually saving the page they are already "sitting on" then you can generate the page content you want to save in a CFSAVECONTENT variable. Then you can use all the content in that variable for multiple things - output to user, save to file, convert to PDF, whatever. Doing it...
  6. safaritek

    Saving a URL with parameters

    If you place CFCOOKIE and CFLOCATION on the same action page the cookie will not set. The page actually has to stop processing before the cookie gets recorded.
  7. safaritek

    Cfdocument Question

    It's because using CFHTTP is accessing the page as a separate session, and therefore isn't logged in. It's just like opening a different browser as a different user. Depending on your security setup, you may be able to pass form fields or login criteria along with the CFHTTP call.
  8. safaritek

    resize on display

    I'm kind of curious why you would want to resize the image on the fly many times over and over again when a user accesses the page, rather than do it once at the time of upload? Either way you are still going to require storage space, because it has to save the resized image somewhere in either...
  9. safaritek

    CFX setup in CF5 (CFX_CHECK_EMAIL)

    You should probably contact the creator of the CFX tag since unless somebody here has actually used it, they most likely won't be able to help you in a generic CF forum.
  10. safaritek

    How to populate cfselect from array, not from query?

    <select name="percent" editable="yes"> <cfloop index="i" from="1" to="100"> <cfoutput><option value=#i#>#i#</option></cfoutput> </cfloop> </select> Place cfoutput tags around the option generation
  11. safaritek

    Getting user info

    probably cgi.referer but it only works if they actually come from a site, nor from book marks or manual entry anything besides that pretty much comes from the server logs
  12. safaritek

    custom 404 page...

    If Friendly Messages are turned on in MSIE, it will not show the ones from the server. Also, the site wide error template is if a CF error occurs, not a general server error.
  13. safaritek

    Store array/query in query cell

    So, you have a list in each row of output?
  14. safaritek

    OPTGROUP?

    You could also setup CFSELECT w/QUERY inside a CFFORM and it has all the attributes defined to generate the same output with 2 lines.
  15. safaritek

    FTP site dictionary attack protection

    nope - that is what firewalls are for.

Part and Inventory Search

Back
Top