Links to popular tutorials

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • acoder
    Recognized Expert MVP
    • Nov 2006
    • 16032

    Links to popular tutorials

    This page will link to a number of tutorials.

    Coldfusion Language
    Coldfusion Variables
    Using Coldfusion Variables
    Coldfusion Image Gallery
    How to upload a file in Coldfusion
    How to send mail using Coldfusion
    Coldfusion Tips and Tricks

    Watch this space...

    Post comments below.
    Last edited by RedSon; Nov 21 '07, 07:24 PM.
  • acoder
    Recognized Expert MVP
    • Nov 2006
    • 16032

    #2
    Comments on Tutorials

    Please specify which tutorial you are commenting on.
    Last edited by RedSon; Nov 21 '07, 07:21 PM.

    Comment

    • cindy7
      New Member
      • Sep 2007
      • 5

      #3
      To be continued...wha t that mean?
      Can some one help on second part of this?
      The "UploadFile.cmf ", I did try to upload the file and save in oracle database but fail, I am having hard time on this issue, can not find any where explanning on this matter.
      Here is the code, please help, very appreciated.

      [CODE=cfm]<HTML>
      <HEAD>
      <TITLE>Load File</TITLE>
      </HEAD>
      <BODY>

      <cfif isdefined("Form .Submit")
      and trim(form.FileN ame) neq "">
      <cftry>
      <cffile action="upload"
      filefield="form .FileName"
      destination="C: \Upload\"
      nameconflict="m akeunique"
      accept="applica tion/octet-stream, application/vnd.ms-excel, image/*">
      <cffile
      action = "readbinary "
      file = "C:\temp\#cffil e.serverFile#"
      variable = "blob">

      <!--cfquery name="testing" datasource="TES T">
      insert into ADD (load_file)
      values (
      <cfqueryparam
      value="#blob#"
      cfsqltype="cf_s ql_blob">
      )
      </cfquery-->

      </cftry>
      </cfif>

      </BODY>
      </HTML>
      [/CODE]
      The problem is when I upload the file, it doesn't do any thing, and I also using SQL Plus to check and see any file insert, but nothing.
      Thanks in advance,

      Comment

      • acoder
        Recognized Expert MVP
        • Nov 2006
        • 16032

        #4
        Originally posted by cindy7
        To be continued...wha t that mean?
        I'll remove that. It just means that the tutorial is not quite complete, but I haven't made changes to it for months.
        Originally posted by cindy7
        Can some one help on second part of this?
        I've copied your query to another thread. I want to keep this comments thread on topic (just on the tutorial itself rather than a particular problem).

        Comment

        • FullyH3ktik
          New Member
          • Sep 2007
          • 52

          #5
          Very good demonstrations (tutorials), you should put more of these types of things here

          Comment

          • acoder
            Recognized Expert MVP
            • Nov 2006
            • 16032

            #6
            Originally posted by FullyH3ktik
            Very good demonstrations (tutorials), you should put more of these types of things here
            Glad you liked them (I only wrote the last one).

            If I get time, I may put some more up soon.

            Do you know any Coldfusion? If you do, perhaps you could share some tips.

            Comment

            • acoder
              Recognized Expert MVP
              • Nov 2006
              • 16032

              #7
              I've added a quick tutorial on sending email using Coldfusion. I plan to add to this to deal with more advanced uses.

              Comment

              • acoder
                Recognized Expert MVP
                • Nov 2006
                • 16032

                #8
                Added "Coldfusion Tips and Tricks" - a collection of short tips when programming with Coldfusion by CF FAN. These may be added to in the future, so subscribe and keep reading :)

                Comment

                Working...