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

  • Users: Keendev
  • Order by date
  1. Keendev

    how to read a text file and display it to the page

    Hi, I just want to ask if this is possible, I have a text file and I need to read starting from line 15 up to line 32 of the text file. Currently Im using the cffile="read" but it reads all of the contents of the file. Can I know if CF can do this ( specify starting line # and ending...
  2. Keendev

    on ie, how to catch the retry button when refreshing

    Hi, I have a script in a button that when pressed will refresh the page. The only thing is on I.E (or other browsers), is everytime page will perform refresh/reload it will give an alert message first, and informs and asks for users to click Retry or Cancel to continue or not. How can I...
  3. Keendev

    how to catch all errors regarding database in the application

    Hi, What's the best way to catch all database error in your application? Im planning to put the script on my cfapplication, can the cfapplication will handle all errors? pls advice and many thanks.
  4. Keendev

    smtp server help

    Thanks for your advice.
  5. Keendev

    Install 2 different CF in one machine

    HI, Just want to ask if it is possible to use 2 different Coldfusion in just one machine. I'll be needing different ports on this. REASON : I have to backup the 2 web aplications, one is currently runnng on CFMX6.1 and the other one is CF 5.0 (ggrrrr). The second application wont run...
  6. Keendev

    smtp server help

    Hi, I have application server and Cf MX installed on it. I need to send email through Coldfusion by using cfmail? Can I install smtp mail software on the web application server and use it on my CF application and send mails using the cfmail? thanks in advance. =) Is there free smtp that I...
  7. Keendev

    limit number of visitors on the page ?

    Hi again folks. First, thanks to alucidweb, I'll try your advise and let you know if it work for my page. =) many thanks. And to r937, yup good thing you ask,maybe you can help me with this too. On my page upload.cfm, there are admin users that will be uploading .csv files. There will be...
  8. Keendev

    limit number of visitors on the page ?

    Hi guys, Happy Holidays to all!! Just wondering if this is possible .... 1.On the website, they need to login, 2. after the succesful log-in then a session is created...on one of my page I will limit the number who can access the page ? - Example, on upload pic page (upload.cfm)...
  9. Keendev

    app server and database server

    Hi, Need some help. Would it be possible if I do this? I have this project website, about uploading csv files. The database resides on diff server and application server is another machine. Website is on Coldfusion platform and using Oracle database. From the website, people will upload csv...
  10. Keendev

    sql loader advice? needed

    Hi, Need some help. Would it be possible if I do this? I have this project website, about uploading csv files. The database resides on diff server and application server is another machine. Website is on Coldfusion platform and using Oracle database. From the website, people will upload csv...
  11. Keendev

    Iframe with a form; cannot display the value. Help

    Hope you can help me me again w/the last part : ex. '<cfset height_id = this.value>'; Putting the height id selected in a variable, so I can assign it to a coldfusion variable and use it on other parts of the page. thanks again, hope you won't get tired. Just the last part now...
  12. Keendev

    Iframe with a form; cannot display the value. Help

    I am actually will be using coldfusion later for this. <iframe src="result_two.cfm" id="myframe" style="border:0px;width:400;"> And on my result_two.cfm <script> window.onload=function(){ document.getElementById('opt').onchange=function(){ if (this.value) {...
  13. Keendev

    Iframe with a form; cannot display the value. Help

    Hi tsuji , thanks for giving me solutions. However, I tried your it on my side IE but does not display the var. innerHTML displays nothing on my browser IE 6. I also tried the recent code, it also displayed nothing. window.onload=function(){...
  14. Keendev

    Iframe with a form; cannot display the value. Help

    When I tried this code : document.write(this.value); it displayed "undefined
  15. Keendev

    Iframe with a form; cannot display the value. Help

    Hi, When I tried your advice, everythings is ok except for the output display. The innerHTML="This frame's height is <span style='color:blue;'>"+this.value+"</span> px."; . Can we put it on one variable, and I'll just call it via that variable. like for example id_height = this.value...
  16. Keendev

    Iframe with a form; cannot display the value. Help

    Hi tsuji , How can I output the option value on the "result_one.htm"? like for ex. I select the option "Change IFRAME height to 500px", then on the result page "result_one.htm" it will display the option value="500" ,500 on the page as text?? thanks for the big help.
  17. Keendev

    Iframe with a form; cannot display the value. Help

    Hi guys, Im using iframe. And I need some help. I just want to get the value of the option that is being selected on the next page. Pls see code below. Like if i select the 500 from the option it will display the value '500' on the frame page. <script type="text/javascript">...
  18. Keendev

    How to get list element number that contains 'csv'

    Hi again =) Im using Cf 6.1 MX. And need index numbers and the values? thanks
  19. Keendev

    How to get list element number that contains 'csv'

    Hi, im getting the files from a certain directory and putting it on a list <cfdirectory directory="#path#" name="newFolderDir" sort="name ASC, size DESC"> <cfloop query="newFolderDir" > <CFSET File_list = ListAppend(File_list, #Name#)> </cfloop> But I need also to get the files that...
  20. Keendev

    How to get list element number that contains 'csv'

    Hi Guys, Need help on this. I have a list. And inside my list is "one.doc,two,three,four.csv,five.csv " ex : filelist = one.doc,two,three,four.csv,five.csv How do I get element number that contains ".csv"? For this example I should get element 4 and 5. Is there a better CF function...

Part and Inventory Search

Back
Top