Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #2K
~12.1K People Reached
About Me

Which one? System Admin, USAF - Owner, Creative Web Solutions, LLC

Interests
Wife, kids, active duty military, web hosting company COO
Favorite Tags

27 Posted Topics

Member Avatar for tapuwa2002

Cflocation wins that round. You might to do the alert(''); window.location combo using javascript. that's what I do

Member Avatar for arrgh
0
284
Member Avatar for mmonclair

You should have a form submit to a page, do some cfif's and then do a cflocation based on whatever. Maybe try that route?

Member Avatar for arrgh
0
8K
Member Avatar for alinbabba

[QUOTE=nameunknown;1702940]start with easy lessions from easycfm. [url]www.easycfm.com[/url] that will get you started with the basics[/QUOTE] That's where I learned a lot of my CF skills. Great site.

Member Avatar for subrata_ushasi
0
749
Member Avatar for jsmall26

So I know coldfusion, so I'll post it like this... Whats the best ASP.net example of this coldfusion code? [CODE]<cfset mylist="red,blue,yellow,green"> <cfloop list="#mylist#" index="i"> <cfoutput>#i#</cfoutput> <BR> </cfloop>[/CODE] I can't find this example anywhere on the web. Thanks guys!

Member Avatar for Antenka
0
120
Member Avatar for Graycode

if you're using CSS, try *{font-family: Arial;}... the * is a wildcard and will change all of your elements to use that font. Make that the last line in your style sheet for it to take effect.

Member Avatar for jsmall26
0
69
Member Avatar for rayden150
Member Avatar for jsmall26
0
228
Member Avatar for igotdreams

I dont know that i'd put it in the application file. Maybe the index.cfm page, but the application.cfm will be called for every page in that directory and if its in the root of your website, you'll get a TON of emails. That's just my 2 cents though. :)

Member Avatar for jsmall26
0
161
Member Avatar for dottomm

Wrap the whole page, query and all, in the cfdocument tag. It should be the first line and last lines of the whole page. Make sure your variables that are passed are scoped with the url/cookie/session. I create dynamic pdf's all the time and this problem the first time I …

Member Avatar for jsmall26
0
402
Member Avatar for sattua
Member Avatar for jsmall26
0
84
Member Avatar for dazzlindonna

That actually isn't right. there's too many ##'s. It should look like this: [CODE]<cfoutput>#dateformat(now(),"dddd, mmmm dd, yyyy")#</cfoutput>[/CODE]

Member Avatar for jsmall26
0
199
Member Avatar for arctushar

I think that was a spam post... or someone is really high and trolling daniweb lol

Member Avatar for jsmall26
0
97
Member Avatar for teedoff

I think I know what you're asking and to relay the answer to you is the trick. :) [code] <!-- lets say you have a table for car types with the columns, car_id, body_type, make, model --> <!-- Select your body_types, you'll need these first --> <cfquery datasource="#datasource#" name="qCars"> select …

Member Avatar for jsmall26
0
134
Member Avatar for fobos

That's why I like coldfusion better than any other web coding language. Adobe made it easy :)

Member Avatar for arrgh
0
167
Member Avatar for PotaZinga

I see an error in line 20. It should be [code]response.write[/code]

Member Avatar for PotaZinga
0
105
Member Avatar for vijaykseo

If you want to see a list of other avaiable cgi options, do this code [code]<cfdump var="#cgi#">[/code] That will show you all kinds of stuff about what the server is storing for you.

Member Avatar for arrgh
0
253
Member Avatar for nil87

check out easycfm.com. There's a link on there for free coldfusion hosting.

Member Avatar for jsmall26
-2
168
Member Avatar for lse123
Member Avatar for jsmall26
0
163
Member Avatar for mattlorimor

I know that Gmail uses SSL for their smtp so try port 995. I'm not sure what the code syntax is for it, but its probably a cfmailparam or something.

Member Avatar for jsmall26
0
159
Member Avatar for P0lT10n

If you're talking about the width, you could say [code]<style> body{margin: 0px, 5%, 0px, 5%;} </style>[/code]... is that what you're talking about?

Member Avatar for P0lT10n
0
172
Member Avatar for mikeandike22

Wouldn't you want to say [code]<cfparam name="nTax" default=".05"><cfparam name="nPrice" default="5.95">[/code] instead? Also, I'd wrap the <cfoutput> tags only around the variables [code]Price: <cfoutput>#dollarformat(nPrice)#</cfoutput>[/code] (also put the dollar numbers in dollar format on all of them. :)

Member Avatar for jsmall26
0
89
Member Avatar for Cheesecake87

[code] <!--- CFPARAM will set and store temp variables in memory. I did this just for the sake of making it work here. ---> <cfparam name="amount_" default="0"> <cfparam name="quantity_" default="0"> <!--- The variable Amount_ is set. This will accept url.amount_ as well. ---> <!--- When You set variables from other …

Member Avatar for jsmall26
0
147
Member Avatar for mohanrobin

theres a lot of different things you can do in coldfusion, so decide what it is and start looking at documentation from Adobe.com... I'll help you out, but I need to know what you know and what you want your website to do.

Member Avatar for jsmall26
0
66
Member Avatar for chicago1985

Try this, I found it on EasyCFM.com and this one has been around for awhile... [URL="http://tutorial5.easycfm.com/"]http://tutorial5.easycfm.com/[/URL]

Member Avatar for jsmall26
0
113
Member Avatar for jaicse

Try EasyCFM.com for tutorials. Check the documentation at adobe.com and other places. Do a search in Google and see what you find.

Member Avatar for jsmall26
0
78
Member Avatar for sweetobi

Here's your answer: [URL="http://tutorial308.easycfm.com/"]http://tutorial308.easycfm.com/[/URL]

Member Avatar for jsmall26
0
106
Member Avatar for tidoline

What version of CF Server are you (or your host) running? With CFMX 7 and up you can wrap your html in the tag [code]<cfdocument format="pdf">(CF and html code)</cfdocument>[/code]. If its prior to those versions, I'm not sure about it.

Member Avatar for jsmall26
0
84
Member Avatar for sanscls

Have you tried fuseactions? I use them and have only 1 part of the page that ever changes. You can see what i mean by visiting my site (in my signature block). If you want to know more about fuseactions, let me know and I'll help you out.

Member Avatar for jsmall26
0
61

The End.