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 Rhinorhino 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 GradStudent

  1. GradStudent

    Make the dot dissapear in IP address

    Hi, <cfset Ip1 = trim(ListGetAt(IpAddress_withdot,1,&quot;.&quot;))> <cfset Ip2 = trim(ListGetAt(IpAddress_withdot,2,&quot;.&quot;))> similary get Ip3 and Ip4. insert each number from Ip1, Ip2, IP3 and Ip4 to one common array. <cfset counter = 1> <cfloop from i = &quot;1&quot; to...
  2. GradStudent

    cffile Read

    Hi, Logic : Get the contents of the file -> transfer that contents to the array. -> Each element of the array will represent each line of the file. -> Seperate out each sub - element from that array element(row) i.e. Employee_id job_title start_date end_date -> Compare two employee_ids and...
  3. GradStudent

    CFFILE action=&quot;read&quot;

    No Problem! I'm not sure though, but i guess you have to use cfoop. Good luck!
  4. GradStudent

    CFFILE action=&quot;read&quot;

    Hi, Check the contents of file_content variable by displaying it on the browser : <cfoutput>#file_content#</cfoutput> Check whether actual / correct conents of the file is being stored in that varible or not??
  5. GradStudent

    cfupdate and date fields

    Hi, try : <cfset Opening_Date = dateFormate(CreateDate(#year#, #month#, #day#), &quot;mm dd yyyy&quot;)>
  6. GradStudent

    CFFILE action=&quot;read&quot;

    Hi, <cffile action=&quot;read&quot; file=&quot;c:\xml\step.txt&quot; variable=&quot;file_content&quot;> Contents of your file will be stored in the file_content variable. Try : Replace(file_content, &quot;hello&quot;, &quot;hello1&quot;, &quot;ALL&quot;) will replace all occurances of hello...
  7. GradStudent

    Javascript within &lt;cfoutput&gt; tags

    Hi, Don't put whole javascript under <cfoutput> tag. Instead use seperate output tag for each table / search variable: <a href=&quot;##&quot; onmouseover=&quot;preview.src='../Images/preview_over.gif'&quot; onmouseout=&quot;preview.src='../Images/preview.gif'&quot...

Part and Inventory Search

Back
Top