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. hotcold

    Problem with Pound sign (#) in CFML expression...pls help me

    It is normal that it doesn't work. Your : <cfparam name=&quot;thema_#i#&quot; default=&quot;no&quot;> is Coldfusion : server side. Changes nothing to your input box : client side. But it is a good idea. The cfparam should just be used at the right place: In your action page. Of course it...
  2. hotcold

    Problem with Pound sign (#) in CFML expression...pls help me

    Try : evaluate(&quot;Form.thema_#i#&quot;) is &quot;yes&quot;
  3. hotcold

    Loosing session variables

    Hi! A strange problem has appeared on our web site. It looks as if we were loosing some session variables : they are set and then from one page to an other become undefined whereas some other session variables are still there. The timeout of the session variables is set to 20 minutes so that...
  4. hotcold

    Action window...

    yes, just put the name of your new window in the target attribute (any name will do it) <cfform action=&quot;action&quot; method=&quot;POST&quot; target=&quot;target&quot; enablecab=&quot;No&quot; name=&quot;name&quot;> if you want to resize your window, you'll need a little javascript.
  5. hotcold

    Payment Gateway

    i had the same problem. ListToArray adds no item when it finds ,, I fixed it by doing the replace all thing twice : toto = Replace(value, &quot;,,&quot;,&quot;,N/A,&quot;,&quot;All&quot;) Replace(toto, &quot;,,&quot;,&quot;,N/A,&quot;,&quot;All&quot;)
  6. hotcold

    Payment Gateway

    Try this : <cfset my_array = ListToArray(your_list ,&quot;,&quot;)> Now my_array[1] is &quot;True&quot;, my_array[2] is &quot;34567&quot; and so on!
  7. hotcold

    updating multiple rows

    When the checkbox is not checked, the action page doesn't receive the form so the form.XXX is not defined. You can either use cfparam, perhaps that's what you wanted to do with : <cfparam name=&quot;linkbroken&quot; default=&quot;0&quot;> but the end of the name is missing. or you can check if...
  8. hotcold

    updating multiple rows

    if #Evaluate(locsongid)# is an integer, don't put the '' idem for #Evaluate(loclinkbroken)#
  9. hotcold

    updating multiple rows

    if the &quot;update&quot; is the same for each row, you can use update your_table set your_column = your_value where your_table_id in (#form.name_of_the_checkbox#) assuming all your checkbox have the same name. don't forget to check if there is at least one checkbox checked.
  10. hotcold

    How to untar / unzip files with coldfusion?

    Well, I am trying to use your solution but I have difficulties in using cfexecute. I use this : <cfexecute name=&quot;e:\mypath\tar-1.12.msdos.exe&quot; arguments=&quot;-xf *.tar&quot; timeOut=&quot;60&quot;> It works well when I directly run the command under msdos. With coldfusion, it...
  11. hotcold

    How to untar / unzip files with coldfusion?

    I know pkzip, don't worry ;-) Actually I wanted to avoid using CFEXECUTE as it would force me to change the Tag Restrictions in the Coldfusion Administrator, and cfexecute sounds like a dangerous tag.
  12. hotcold

    Begineers need help

    There might be an error in a parametre of your query. Check it.
  13. hotcold

    How to untar / unzip files with coldfusion?

    Thanks but it's commercial : $49.00 ! I was looking for a free solution...
  14. hotcold

    How to untar / unzip files with coldfusion?

    I have a .tar file containing several .gz files. How can I get the original files with coldfusion? The server is IIS (NT). Any help would be greatly appreciated.Thanks.

Part and Inventory Search

Back
Top