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 wOOdy-Soft 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: aleci
  • Content: Threads
  • Order by date
  1. aleci

    Making a poup calendar inline

    Hi, Im hoping this will prove simple to a JavaScript programmer however it is giving us a real headache: We have a gift website and on the checkout page is a link to a popup calendar so users can easily enter a delivery date for their gift(s). The link to the calendar is on the page...
  2. aleci

    Upload a whole folder of images

    I am looking for a way to upload a whole folder/directory of images to the CF server in one shot. I have experience of multiple file uploads - using multiple input fields - with the CFFILE tag, but need to be able to upload a whole folder/directory without selecting each image individually...
  3. aleci

    Checking for duplicate values in a list

    For my purposes a valid list cannot duplicate values: <cfset list1 = &quot;1,2,3,4,5&quot;> <cfset list2 = &quot;1,2,3,3,5&quot;> Therefore how can i check these to allow list1 but not list2? Been looking at listfunctions all day and now im fed up. Thanks in advance.
  4. aleci

    Keeping a background image constant

    Hi, I have a cfm page which calls a background image the in the <body> tag. Within the template is a query which outputs data depending on a variable set on the page. I have NEXT and PREVIOUS links on this page to either increase/decrease this variable, and the href of the links is the same...
  5. aleci

    Popup within &lt;CFIF&gt; statement

    A simple one i hope, <cfif isdefined(&quot;variable&quot;)> I want a popup window to be generated here (passing the variable into new window) <cfelse> Nothing </cfif> Is this possible using javascript seeing as the user wont be physically clicking a link or submitting a form? thanks
  6. aleci

    Refreshing a particular frame

    Hi, My site consists of 3 frames; a top frame, a lhs frame and a main frame. The problem i am encountering is that if I click the broswers' refresh button, the whole frameset is reloaded and the user is returned to the index page (as defined in the frameset), regardless of the page they were...
  7. aleci

    A JS popup problem

    Hi all, I have the following code to generate a popup window containing the file terms.htm: function topWindow4(){ popup = window.open(&quot;terms.htm&quot;,&quot;&quot;,&quot;height=500,width=600,resizable=no,scrollbars,screenX=50,screenY=100,top=30,left=50&quot;); } The problem is that in...
  8. aleci

    A JS popup problem

    Hi all, I have the following code to generate a popup window containing the file terms.htm: function topWindow4(){ popup = window.open(&quot;terms.htm&quot;,&quot;&quot;,&quot;height=500,width=600,resizable=no,scrollbars,screenX=50,screenY=100,top=30,left=50&quot;); } The problem is that in...
  9. aleci

    Netscape Frame Problem

    Hi all, Can anybody see anything wrong with the following code ? I use it to create a single frame covering the whole page: <html> <head> <title>Netscape Frame</title> </head> <frameset border=&quot;0&quot; frameborder=&quot;0&quot; framespacing=&quot;0&quot;> <frame...
  10. aleci

    Netscape TAble Background Image

    Hi all, This should be a simple one for any Netscape experts out there. I want to know if I have to do anything particular to the syntax when trying to include a Background image in a table. Its the same old story: All works well in IE but when i come to view my table in N4.78 the background...
  11. aleci

    Netscape Scrollbar Problem

    Hi all, Hopefully someone can help me with a seemingly simple problem. I have created a popup window using the following script: function topWindow5(){ popup = window.open(&quot;about.htm&quot;,&quot;&quot;,&quot;height=450,width=600,scrollbars=yes screenX=50,screenY=100,top=30,left=50&quot;)...
  12. aleci

    Netscape Scrollbar Problem

    Hi all, Hopefully someone can help me with a seemingly simple problem. I have created a popup window using the following script: function topWindow5(){ popup = window.open(&quot;about.htm&quot;,&quot;&quot;,&quot;height=450,width=600,scrollbars=yes screenX=50,screenY=100,top=30,left=50&quot;)...
  13. aleci

    Passing #SESSION.URLTOKEN# into frames

    Hi all, Im trying to pass the #SESSION.URLTOKEN# variable into a template, left.cfm, through a frameset. The reason i am doing this is to test the case where a user may have cookies disabled. The frames are set on my index.cfm page which contains the following: <FRAME name=&quot;left&quot...
  14. aleci

    CFID &amp; CFTOKEN

    Hi, Ive read many threads in tek-tips concerning session variables and CFTOKEN/CFID's etc. From what i understand, if you wish to use session variables in an application, you must consider the case where the user may have cookies disabled on their browser. This is because the session is 'tied'...
  15. aleci

    Im in the process of creating a Dat

    Im in the process of creating a Database driven online newspaper with an archive system so that a user can go back and view past issues. I reached a stage where i was happy with the results: 1)User enters home page 2)I use an IF statement to see if a session variable named 'issue' isdefined...
  16. aleci

    Passing a form variable into a popup window

    Hi, Is it possible to pass a variable from a CF template (via a hidden form field) into a JavaScript popup window ? The name of the page with the form (and so the variable) in is story.cfm The name of the page i wish to load into the popup is mail_set.cfm I wish to refer to this variable in...
  17. aleci

    Access &amp; Form Data

    Hi all, 1)Firstly I'm submitting information through a form field (form.title) and a TEXTAREA box (form.content) 2)Then i am entering the information into a DB using the SQL INSERT INTO/VALUES combination. 3)Finally i am outputting the DB info into a section of a web page. My problem is...
  18. aleci

    CFLOOP &amp; Popup window!

    hi, im trying to use a CFLOOP tag around a JS popup window function but it seems to be failing . Does anybody have any experience with this - is it possible? My code is as follows: <cfoutput> <cfloop query=&quot;getnews&quot; startrow=&quot;1&quot; endrow=&quot;3&quot;> <script...
  19. aleci

    CFHTTP &amp; URL error

    Hi all, I am working on retrieving news content from the 'Guardian-Unlimited' site. If the URL doesnt work through technical problems,i want to be able to abort the retrieval and display previous news already stored in a DB instead. Can CFHTTP 'test' the given URL prior to executing the...
  20. aleci

    Session Counter Needed

    Hi all, I want to be able to tell a visitor to a certain page that s/he has logged in x number of times. People log in with a username/password combination passed through form fields , which is verified against information stored in a DB, before each user session is initialized: <CFQUERY...

Part and Inventory Search

Back
Top