Welcome to Dream.In.Code
Become an Expert!

Join 136,946 Programmers for FREE! Get instant access to thousands of experts, tutorials, code snippets, and more! There are 1,891 people online right now. Registration is fast and FREE... Join Now!




Request a ColdFusion Tutorial

 
Reply to this topicStart new topic

Request a ColdFusion Tutorial

skyhawk133
4 Sep, 2007 - 09:10 AM
Post #1

Head DIC Head
Group Icon

Joined: 17 Mar, 2001
Posts: 14,964



Thanked: 48 times
Dream Kudos: 1650
Expert In: Web Development

My Contributions
Want something explained in a tutorial, post your request here and someone will try to make a tutorial.
User is offlineProfile CardPM
+Quote Post

supersssweety
RE: Request A ColdFusion Tutorial
5 Sep, 2007 - 11:08 AM
Post #2

D.I.C Regular
Group Icon

Joined: 16 Mar, 2007
Posts: 312


Dream Kudos: 125
My Contributions
session variable locks, when and why to use them

anything beyond the basics of CFCs and working with databases and CFCs for web applications
User is offlineProfile CardPM
+Quote Post

dswens
RE: Request A ColdFusion Tutorial
23 Oct, 2007 - 06:26 PM
Post #3

New D.I.C Head
*

Joined: 16 Oct, 2007
Posts: 34


My Contributions
I could really use a quick tutorial on binding flash form items in CF. Ben Forta's WACK briefly touches on it, but I haven't had time to learn flash or actionscripting yet. Anyway, basically, what I need is to have some syntax explained so I see the "why" behind what is being written, otherwise I'm not able to be creative with the code, ya know?

Or, if you know of a good book that would explain that, I could save you the time and just go buy it.

Thanks for the help!

-----------------------

After posting this I started thinking it might belong in the Flash forum, if so, Sorry...

This post has been edited by dswens: 23 Oct, 2007 - 06:58 PM
User is offlineProfile CardPM
+Quote Post

PeterShogren
RE: Request A ColdFusion Tutorial
31 Oct, 2007 - 10:52 PM
Post #4

New D.I.C Head
*

Joined: 30 Oct, 2007
Posts: 2


My Contributions
QUOTE(skyhawk133 @ 4 Sep, 2007 - 10:10 AM) *

Want something explained in a tutorial, post your request here and someone will try to make a tutorial.



I would really like a tutorial on how to write an "I'm online" button that will show when one of my clients is online so his or her (my client's) customer doesn't unknowingly buy a service when my client isn't online to service his or her customer.

Thanks!

Peter
User is offlineProfile CardPM
+Quote Post

kreative-kath
RE: Request A ColdFusion Tutorial
16 Nov, 2007 - 04:49 PM
Post #5

New D.I.C Head
*

Joined: 16 Nov, 2007
Posts: 1


My Contributions
QUOTE(skyhawk133 @ 4 Sep, 2007 - 10:10 AM) *

Want something explained in a tutorial, post your request here and someone will try to make a tutorial.


Hello, I'm new to forums in general. Normally I work it out using tuts or books. I hope you can help me ([i]I'm kinda at the end of my tether)

I am stuck on how I can display on my index.cfm page, that when a button is clicked it will display the appropriate page in an area on the index page. I have inserted a <div id="content"></div> and have linked the buttons to the appropriate pages but alas have had no luck.

Can you suggest a tutorial or anything at all please.

Here is what I have so far

<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>WPCC</title>
<style type="text/css">
<!--
body {
background-image: url(pineBkgrnd.jpg);
background-color: #FFFFFF;
}
body,td,th {
color: #336600;
}
.style8 {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: xx-large; color: #FFFFFF; }
#content {
position:absolute;
width:730px;
height:21px;
z-index:2;
left: 229px;
top: 241px;
}
#navigation {
position:absolute;
width:200px;
height:606px;
z-index:3;
left: 27px;
top: 240px;
}

#banner {
position:absolute;
width:797px;
height:203px;
z-index:2;
left: 29px;
top: 24px;
}
.style16 {font-size: large}
.style21 {font-size: x-small}
.style22 {font-size: medium}
.style25 {font-size: xx-small; }
.style27 {color: #669933; font-size: small; }
-->
</style>
<script language="JavaScript" type="text/javascript" src="ajax.js"></script>
</head>
<body>
<div id="navigation">
<cfinclude template="Navigation.cfm"></div>
<div id="content"></div>
<div id="banner">
<table width="800" align="left">
<tr>
<th width="169" height="50" align="center" valign="middle" background="wollemia-nobilis-4-300.jpg" scope="row">
<h1 align="center" class="style8"><span class="style16">W</span></h1>
<h1 align="center" class="style8"><span class="style16">P</span></h1>
<h1 align="center" class="style8"><span class="style16">C</span></h1>
<h1 align="center" class="style8"> <span class="style16">C</span></h1></th>
<td width="585" valign="top"><p align="center" class="style21"><span class="style16">Wollomi Pine Conservation Company </span></p>
<p align="center" class="style22">1 Wollomi Pine Road, Wollomi Pine Forrest, NSW Australia</p>
<p align="center" class="style22">Tel: 02 9567 8900 Fax: 9567 8911 </p>
<p align="center" class="style25"><span class="style27">Our mission is to encourage persons from all walks of life to have a piece of history</span></p>
<p align="center" class="style21"><span class="style27">"If we all planted one in our backyard the planet could repair itself at a faster rate " <em>The Green Magazine </em></span></p> </td>
</tr>
</table></div>
</body>
</html>


Thanking you in advance for any kind of help you can give me.
User is offlineProfile CardPM
+Quote Post

dswens
RE: Request A ColdFusion Tutorial
11 Dec, 2007 - 04:35 PM
Post #6

New D.I.C Head
*

Joined: 16 Oct, 2007
Posts: 34


My Contributions
First of all, this doesn't seem like the right place to post this question... nonetheless I'll point you in the direction of what I was able to use to solve a similar problem.

Create a javascript function that uses DOM to insert the contents you want (if you are unfamiliar with DOM, it's amazingly easy for how powerful it is for dynamic page manipulation- visit http://www.w3schools.com/htmldom/default.asp for a tutorial/reference).

Then just make button/link point to that javascript function.

I know I didn't just fix the problem for you, but I guarantee this method can be used to do it.
User is offlineProfile CardPM
+Quote Post

parenteau
RE: Request A ColdFusion Tutorial
13 Feb, 2008 - 05:36 AM
Post #7

New D.I.C Head
Group Icon

Joined: 12 Feb, 2008
Posts: 28


Dream Kudos: 50
My Contributions
How to upload files to a server directory with a cold fusion form.
User is offlineProfile CardPM
+Quote Post

jorvis
RE: Request A ColdFusion Tutorial
4 Apr, 2008 - 09:23 PM
Post #8

New D.I.C Head
*

Joined: 4 Apr, 2008
Posts: 11


My Contributions
QUOTE(parenteau @ 13 Feb, 2008 - 06:36 AM) *

How to upload files to a server directory with a cold fusion form.


I'm brand-new here, so forgive me if I'm stepping on any toes or replying to a questions that has already been answered...

Shouldn't the CFFILE tag take care of this? (http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=splash.html)

Or are you talking about uploading multiple files at a time?

User is offlineProfile CardPM
+Quote Post

wiredwizard
RE: Request A ColdFusion Tutorial
19 Jul, 2008 - 06:02 PM
Post #9

D.I.C Head
Group Icon

Joined: 7 May, 2005
Posts: 73


Dream Kudos: 225
My Contributions
How about something on integrating .NET and ColdFusion. Some ColdFusion and Flex mashups would be nice as well

This post has been edited by wiredwizard: 19 Jul, 2008 - 06:02 PM
User is offlineProfile CardPM
+Quote Post

Fast ReplyReply to this topicStart new topic
Time is now: 12/3/08 11:23PM

Live Help!

Tutorials

Programming

Web Development

Reference Sheets

Code Snippets

DIC Chatroom

Bye Bye Ads

Monthly Drawing

Thumb Drive

Top Contributors

Top 10 Kudos This Month