ASP.NET

2003-03-10 Thread Jeremy Bunton
Hello, Odd spot to ask this question but here goes. I am CF user have been for a few years now, but I wishing to branch out a little and widen my knowledge to the use of asp.net. Not that I am leaving CF. I have been looking on amazon for books and don't really see anything that stands out to me.

RE: Inserting date/time stamp

2003-03-10 Thread Venable, John
Try #dateformat(now(), , dd, )# #timeformat(now(),hh:mm)# I think that's right, masks may be off. John Venable -Original Message- From: FlashGuy [mailto:[EMAIL PROTECTED] Sent: Monday, March 10, 2003 2:27 PM To: CF-Talk Subject:RE: Inserting date/time

RE: Inserting date/time stamp

2003-03-10 Thread Ben Doom
In SQL 2000 Server, using the Enterprise Manager, you create a new field (probably an integer), set it to be an identity, tell it where you want to start counting (we find 1 to be convenient) and what you want to increment by (again, 1 is convenient :-) Each time a record is inserted, it will get

RE: Sort XML without XSLT?

2003-03-10 Thread Barney Boisvert
You could read the XML file into a recordset object, do a QofQ on the recordset with an ORDER BY clause, and then loop over the new query. barneyb -Original Message- From: Michael J. Sammut [mailto:[EMAIL PROTECTED] Sent: Monday, March 10, 2003 11:29 AM To: CF-Talk Subject: Sort XML

Re: Special Characters driving me nuts

2003-03-10 Thread ksuh
Don't use URLEncodedFormat() when inserting the data. Place it into the database as-is. Use HTMLEditFormat() to display the data. You'll have to update rows that you URLEncodedFormat() back to their original format. - Original Message - From: Joshua Miller [EMAIL PROTECTED] Date:

Re: Inserting date/time stamp

2003-03-10 Thread Matthew Walker
You should probably think of the hidden date/time field and the displayed date/time as two separate things. For the second, you always need to format a date and time before outputting it to screen, e.g.: #dateformat(now(), , d, )# at #timeformat(now()) Matthew Walker Electric Sheep

RE: MX Error

2003-03-10 Thread Raymond Camden
Is UserType really a query? Also, why the quotes around 0, and user type? Also, if user type is a query, it seems kind of dangerous to sometimes copy it to the request scope as a query, and sometimes as a string. Ie, you either copy the query, or the string Clinical.

RE: Inserting date/time stamp

2003-03-10 Thread Raymond Camden
Read the docs on timeFormat() :) === Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc Member of Team Macromedia Email: [EMAIL PROTECTED] Blog : www.camdenfamily.com/morpheus/blog Yahoo IM : morpheus My ally is

RE: Inserting date/time stamp

2003-03-10 Thread Scott Brady
-- Original Message -- From: FlashGuy [EMAIL PROTECTED] HmmmI also want the date and time displayed on my form. I did a cfoutput#now()#/cfoutput but I don't like the results. I want something like: Monday, March 10, 2003 at 2:26pm Try:

Re: MX Error

2003-03-10 Thread Scott Brady
-- Original Message -- From: Bruce Sorge [EMAIL PROTECTED] You have attempted to dereference a scalar variable of type class java.lang.String as a structure with members if (UserType.RecordCount NEQ 0) { Request.UserType = #UserType#; } else {

OT: Flash remoting

2003-03-10 Thread Matthew Small
Does flash remoting capability come standard with Studio MX? Matthew Small IT Supervisor Showstopper National Dance Competitions 3660 Old Kings Hwy Murrells Inlet, SC 29576 843-357-1847 http://www.showstopperonline.com ~|

RE: Inserting date/time stamp

2003-03-10 Thread Scott Brady
-- Original Message -- From: Everett, Al [EMAIL PROTECTED] You need to format it. #DayOfWeekAsString(Now())#, #DateFormat(Now(), d, )# at #TimeFormat(Now(),h:mmtt)# Actually, you can combine those first two functions into one:

RE: ASP.NET

2003-03-10 Thread Scott Wilhelm
Jeremy: I'm an ASP developer who's dabbling w/ CF, and I can safely recommend any of the Wrox books. I got started on that, and it was a great tool. Granted, since then, there are so many resources on the web for learning ASP ASP.net, that you almost don't need to buy a book. HTH! Scott

Re: Dreamweaver changing code on me

2003-03-10 Thread Massimo, Tiziana e Federica
I've been gradually moving to DreamweaverMX as my web IDE... just because. Today I was writing (hand coding) a form in code-view. I saved it to my web server and tried running it - didn't work correctly. Looked at the HTML source... WTF - what's all this garbage in here? There are a few cases

RE: Dreamweaver changing code on me

2003-03-10 Thread Dave Carabetta
My buttons in the toolbars are still all grayed out. Any idea on that one? I posted a question on Friday concerning the same issue, but got no answer. The Dreamweaver forum has the question posted numerous times as well -- all with no answer. If you do find an answer, can you post it here or to

Simple upload form replacing spaces with _

2003-03-10 Thread Jason Miller
Hello list - I have a simple form - it's in a secure area and allows client to simply upload some PDF's. The file names though MUST allow spaces.. Since I am dynamically creating links and display from the file names. Problem is - if I upload - Test PDF.pdf - it shows up as Test_PDF.pdf - I

MX function arguments is not an array

2003-03-10 Thread S . Isaac Dealey
this should have occurred to me before, but I found a good workaround for the fact that the arguments array in MX is not an array. I realized that isarray(arguments) returns false in MX or true in CF 5, so a reasonably simple function allows me to produce consistent results on both CF 5 and MX

Re: MX Error

2003-03-10 Thread Bruce Sorge
I may be in the running for today's dumbs**t question. I totally forgot to create the DSN when I moved the site. Sorry for the wasted bandwidth. - Original Message - From: Matthew Walker [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, March 10, 2003 1:36 PM Subject: Re: MX

Re: CFMAIL and us-ascii/utf-8 charsets

2003-03-10 Thread Jochem van Dieten
David Grabbe wrote: I've finally got a multipart email working with CFMAIL under CFMX -- with many thanks to Bob Everland and his CF_EmailEveryone tag. However, I've run into a slight problem with character sets. Because of copying/pasting text (from various origins) into a form to build

Re: Flash remoting

2003-03-10 Thread Bryan Stevenson
The required components are installed along with CFMX. Of course you need Flash MX to use it ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED] -

Re: CF 5 location of undelivered mail folder

2003-03-10 Thread Jochem van Dieten
Boardwine, David L. wrote: Is there a way to change the location of the undelivered mail folder in CF 5? I'd really to place it on another drive (instead of the boot drive of my webserver). Only if you change the spoolfolder too. Look in the registry under

RE: Inserting date/time stamp

2003-03-10 Thread FlashGuy
Works great. How can I stop people of editing the input line where I'm dumping the date? I don't want them to be able to change it. input type=text name=theTime value=cfoutputnbsp;#DateFormat(todayDate, , dd, )#/cfoutput size=30 On Mon, 10 Mar 2003 14:35:13 -0500, Ben Doom

Re: Dreamweaver changing code on me

2003-03-10 Thread Dave Lyons
are you guys using anything like windowblinds? - Original Message - From: Dave Carabetta [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, March 10, 2003 2:54 PM Subject: RE: Dreamweaver changing code on me My buttons in the toolbars are still all grayed out. Any idea on

Re: OT: Flash remoting

2003-03-10 Thread Dave Carabetta
Does flash remoting capability come standard with Studio MX? There is a free download you need to install on top of the Flash MX installation to access the various files you will need to incorporate FR into your apps: http://www.macromedia.com/software/flashremoting/downloads/components/ This

SOT: Flash Remoting SP1 Available

2003-03-10 Thread Dave Carabetta
Just a heads up for those who use Flash Remoting in any of their apps. I noticed that SP1 was released today (March 10th) for download. Any Macromedia people who see this, the current link to the Install Instructions is broken.

Compiled classes not legit

2003-03-10 Thread Critz
oi CF-Talk,!! anybody ever get this error? all of a sudden my cfmx server is actin a bit weird, and saying that compiled classes are not valid, even after i shutdown/remove class files/restart.. same error... Crit --- [This E-mail scanned for viruses by Declude Virus]

RE: ASP.NET

2003-03-10 Thread Jeremy Bunton
Any site in particular I should look at. -Original Message- From: Scott Wilhelm [mailto:[EMAIL PROTECTED] Sent: Monday, March 10, 2003 2:50 PM To: CF-Talk Subject: RE: ASP.NET Jeremy: I'm an ASP developer who's dabbling w/ CF, and I can safely recommend any of the Wrox books. I got

Re: Dreamweaver changing code on me

2003-03-10 Thread Dave Carabetta
are you guys using anything like windowblinds? I've never even heard of that, so I guess not! ;) Thanks, Dave. ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: Inserting date/time stamp

2003-03-10 Thread Everett, Al
You can used the disabled attribute if all your users are using IE. (Not recommended.) I would display the text outside of the form and put the value in a hidden field. #DateFormat(todayDate, , dd, )# input type=hidden name=theTime value=cfoutputnbsp;#DateFormat(todayDate, ,

Re: Subject: MM will OWN my Devex Submissions?

2003-03-10 Thread Christian Cantrell
I think you're right to be concerned. I remember when Apple did this with their online iDisk accounts and Yahoo with their Geocities accounts. In all these cases we can guess that the intent is that they just need to have the right to copy and redistribute the material which is the

RE: Inserting date/time stamp

2003-03-10 Thread Ben Doom
IIRC, add the keyword readonly to the tag ie input type=text value=don't change this readonly Maybe someone with a better memory than mine can confirm. :-) -- Ben Doom Programmer General Lackey Moonbow Software, Inc : -Original Message- : From: FlashGuy [mailto:[EMAIL

RE: ASP.NET

2003-03-10 Thread Matthew Small
http://www.Asp.net and http://www.aspalliance.com are a couple of sites. Matthew Small IT Supervisor Showstopper National Dance Competitions 3660 Old Kings Hwy Murrells Inlet, SC 29576 843-357-1847 http://www.showstopperonline.com -Original Message- From: Jeremy Bunton [mailto:[EMAIL

RE: Inserting date/time stamp

2003-03-10 Thread Scott Brady
-- Original Message -- From: FlashGuy [EMAIL PROTECTED] How can I stop people of editing the input line where I'm dumping the date? I don't want them to be able to change it. input type=text name=theTime value=cfoutput #DateFormat(todayDate, ,

RE: ASP.NET

2003-03-10 Thread Scott Wilhelm
ASPIN.com would be a great start. It's a really good hub for finding information... There's also some lists at ASPFriends.com (they've recently taken a huge step back by going from hundreds to only 2 lists, but still high quality). HTH Scott -Original Message- From: Jeremy Bunton

Re: Changing from HTTPS to HTTP for normal pages

2003-03-10 Thread Christian Cantrell
You can use Apache rewrite rules, or even a little JavaScript or CF to check the protocol at the top of the page and redirect if it isn't right. The most straightforward way, however, is to use an absolute URL which includes the protocol. Christian On Monday, March 10, 2003, at 01:59 PM,

Re: ASP.NET

2003-03-10 Thread Ben Densmore
Jeremy, WROX has a bunch of good books out for ASP.NET. Beginning ASP.NET and Professional ASP.NET are a really good series. And they also have a new set of books called ASP.NET Programming: Problem-Design-Solution for both VB.NET and C#. I haven't read those but heard they are really good.

Re: Dreamweaver changing code on me

2003-03-10 Thread Dave Lyons
lol i have seen a few apps that change the appearance of windows and they seem to mess up dwmx was just checkin;) dave - Original Message - From: Dave Carabetta [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, March 10, 2003 3:21 PM Subject: Re: Dreamweaver changing code on

Transfer CF Studio 4.5.2 settings?

2003-03-10 Thread Matt Robertson
I just reinstalled CF Studio (4.5.2) as part of a hardware upgrade and groaned as soon as I saw the default screen, colors, toolbars and so on. Is there something or things I can copy from Computer A to B that will xfer over all of my settings? Cheers,

RE: Flash Remoting SP1 Available

2003-03-10 Thread Chris Kief
After looking through the available downloads - it appears there *is not* a server-side update for ColdFusion MX. From the installation instructions: This Updater is for Flash Remoting MX for .NET and Java and the Flash Remoting Components. For updates to Flash Remoting MX within ColdFusion MX,

CFMAIL delivery receipt

2003-03-10 Thread ecreese
Does anyone know how to get a delivery receipt added to an email that was genrated using CFMAIL?? Eric Get your own free email account from http://www.popmail.com ~| Archives:

RE: Dreamweaver changing code on me

2003-03-10 Thread Cantrell, Adam
are you guys using anything like windowblinds? No, not here. Adam. ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

Re: Simple upload form replacing spaces with _

2003-03-10 Thread Gyrus
- Original Message - From: Jason Miller [EMAIL PROTECTED] Hello list - I have a simple form - it's in a secure area and allows client to simply upload some PDF's. The file names though MUST allow spaces.. Since I am dynamically creating links and display from the file names. Problem

RE: CFMX Linux JDBCPool Timeout

2003-03-10 Thread Paul Hassinger
Here is more detailed information surrounding the issue. Thanks == 03/10 13:49:14 error SQLException occurred in JDBCPool while attempting to connect, please check your username, password, URL, and other connectivity info.

Re: Dreamweaver changing code on me

2003-03-10 Thread Massimo, Tiziana e Federica
My buttons in the toolbars are still all grayed out. Any idea on that one? I posted a question on Friday concerning the same issue, but got no answer. The Dreamweaver forum has the question posted numerous times as well -- all with no answer. If you do find an answer, can you post it here or

RE: Transfer CF Studio 4.5.2 settings?

2003-03-10 Thread Barney Boisvert
Move over your c:\program files\allaire\coldfusion studio 4.5\user data directory. that'll get most of it. You may also want to pull up regedit and export some registry settings and import them on the new computer. -Original Message- From: Matt Robertson [mailto:[EMAIL PROTECTED]

RE: Dreamweaver changing code on me

2003-03-10 Thread Cantrell, Adam
Massimo, thanks for the reply. I have the updater now, and it seems to have fixed the overwriting code problem. Still have grayed out toolbar buttons (but it has forced me to start using the CFML code comment hotkey instead of the toolbar button - which I admit was a really wasteful habit. So this

RE: Flash Remoting SP1 Available

2003-03-10 Thread Debbie Dickerson
Correct. There are no Flashing Remoting updates for CF at this point. It will be included in the next release of the Updater. Deb -Original Message- From: Chris Kief [mailto:[EMAIL PROTECTED] Sent: Monday, March 10, 2003 3:42 PM To: CF-Talk Subject: RE: Flash Remoting SP1 Available

Re: CFMX Linux JDBCPool Timeout

2003-03-10 Thread Jochem van Dieten
Paul Hassinger wrote: Here is more detailed information surrounding the issue. Thanks == 03/10 13:49:14 error SQLException occurred in JDBCPool while attempting to connect, please check your username, password, URL, and other

Re: Subject: MM will OWN my Devex Submissions?

2003-03-10 Thread Massimo, Tiziana e Federica
You are right that some of terms are necessary in order for us to legally operate the Exchange, and some are meant as protection against being sued in the event that we include features in future versions of our products which are similar to features that that were enabled through code

RE: CFMAIL delivery receipt

2003-03-10 Thread Matthew Fusfield
Eric: Adding cfmailparam name=Return-Receipt-To value=#email# to the inside of the CFMAIL tag should do the trick. (The variable email should be the address to send the receipt to) Matt -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, March 10, 2003

Re: Simple upload form replacing spaces with _

2003-03-10 Thread Jason Miller
Thanks.. that is what I had thought.. while waiting to see if anyone answered I had done a replace but I am doing a few - and the code is just getting longer for a very simple task.. cfset FileLinkName = Replace(File, .pdf, , ALL) cfset FileLinkName2 = Replace(FileLinkName, _, , ALL)

CFMAIL stuck...

2003-03-10 Thread Ian Lurie
Hi all, Came into the office this morning to find CFMAIL choking on a series of zero-byte e-mail messages. I've seen that before, so I deleted them. But the server's still stuck. There was 1k message also stuck in the queue - it had only one character. I figure that that's the problem. But I

SOT: Flash Remoting SP1 Available

2003-03-10 Thread cbetta
OK, even though the main download page doesn't specify, the Release Notes seem to indicate that the updater is only for Java/.NET. Can anybody confirm if the Updater applies to CFMX? If not, sorry for the potential confusion in my last post. Regards, Dave.

getmetricdataxml.cfm

2003-03-10 Thread Jeff Beer
Can I turn off the MIB stuff anywhere? I don't need the data and it's adding a little load to my system. We used to run SNMP - I'm guessing they had it logged then somewhere back then. This is CF 5.0 TIA! Jeff ~| Archives:

OT: LouLex CFUG Topic for Thursday, 3/13/03

2003-03-10 Thread Ben Doom
I, the House of Fusion Regex Ninja, shall be giving a short course in Regular Expressions this Thursday at the Lexington/Louisville (KY) CFUG. http://www.loulexcfug.com If you plan to attend, please RSVP via the site if you have not already. My current plan is for it to be something of an Intro

RE: ASP.NET

2003-03-10 Thread James Alexander
I personally can't stand the Wrox books. It's a bit of an investment, but I recommend the following titles: MSPress Titles: Visual C#.Net (Core Reference) - Mickey Williams (if you are going the C# route) Programming VB.NET - Franseco Balena (if you are going the VB route) Microsoft ADO.NET

error

2003-03-10 Thread lee
1) What platform are you on? 2) If Unix (does NOT look like it -- c\ drive), then it's a permission file problem. CHMOD 755 [filename] and see what happens. 3) This is a class file -- compilied JAVA file -- binary. You should only have read (IF that) on it. Need more info to debug (what are

Re: Changing from HTTPS to HTTP for normal pages

2003-03-10 Thread Jason Miller
I probably took the non -slick route - but easiest for me... In an application .cfm I simply set a param.. cfparam name=pageSecure default= on any actual secure page - I simply set it only if it is secure. cfset PageSecure = Yes then in my header file which is on every page obviously - I do a

RE: getmetricdataxml.cfm

2003-03-10 Thread Debbie Dickerson
If you rerun the CF5 installer and choose Modify, you can unselect the MIB option (located under Application Management group). Deb -Original Message- From: Jeff Beer [mailto:[EMAIL PROTECTED] Sent: Monday, March 10, 2003 4:04 PM To: CF-Talk Subject: getmetricdataxml.cfm Can I turn

RE: Flash Remoting SP1 Available

2003-03-10 Thread Chris Kief
Thanks for the confirmation Debbie! chris -Original Message- From: Debbie Dickerson [mailto:[EMAIL PROTECTED] Sent: Monday, March 10, 2003 12:54 PM To: CF-Talk Subject: RE: Flash Remoting SP1 Available Correct. There are no Flashing Remoting updates for CF at this point. It will be

RE: ASP.NET

2003-03-10 Thread James Alexander
I personally can't stand the Wrox books. It's a bit of an investment, but I recommend the following titles: MSPress Titles: Visual C#.Net (Core Reference) - Mickey Williams (if you are going the C# route) Programming VB.NET - Franseco Balena (if you are going the VB route) Microsoft ADO.NET

Re: CFMAIL stuck...

2003-03-10 Thread Jochem van Dieten
Ian Lurie wrote: Came into the office this morning to find CFMAIL choking on a series of zero-byte e-mail messages. I've seen that before, so I deleted them. But the server's still stuck. There was 1k message also stuck in the queue - it had only one character. I figure that that's

CFC theory

2003-03-10 Thread Brad Howerter
I've just read through the CFC Theory thread from last fall, and I don't understand why noone ever suggested this: Why not just create the private scope? i.e. cfcomponent cfset private.anyvar = 'hidden value' /cfcomponent Or use pr.anyvar for less typing. Or self.anyvar, or anything

RE: getmetricdataxml.cfm

2003-03-10 Thread Jeff Beer
Grumble.. I was really hoping for a registry key to set to zero.. Seriously, thanks for the reply! Jeff -Original Message- From: Debbie Dickerson [mailto:[EMAIL PROTECTED] Sent: Monday, March 10, 2003 4:27 PM To: CF-Talk Subject: RE: getmetricdataxml.cfm If you rerun the CF5

Re: Subject: MM will OWN my Devex Submissions?

2003-03-10 Thread Christian Cantrell
I certainly understand and appreciate your concerns. As I posted earlier, the language is a precaution, but I did not explain what we are protecting ourselves from. The point of the language is to protect Macromedia from lots of little law suits. Language like this is necessary in

Re: Dreamweaver changing code on me

2003-03-10 Thread Massimo, Tiziana e Federica
I recognize your name from a few of the Dreamweaver articles I've read, glad to know we have a dreamweaver authority on the list :) I've been around since years, I actually started with Allaire's product many years ago, long before the merge, even before DW 1 came out. It's just that I am more

Re: Subject: MM will OWN my Devex Submissions?

2003-03-10 Thread Mike Chambers
Yes, we are aware of the Dreamweaver community's concerns on this matter. mike chambers [EMAIL PROTECTED] - Original Message - From: Massimo, Tiziana e Federica [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, March 10, 2003 4:16 PM Subject: Re: Subject: MM will OWN my

Re: CFMAIL stuck...

2003-03-10 Thread Ian Lurie
Ugh. Any long term solution to this problem? What if it happens again? Is there a good replacement for CFMAIL that won't do this to me? On Monday, March 10, 2003, at 01:31 PM, Jochem van Dieten wrote: Ian Lurie wrote: Came into the office this morning to find CFMAIL choking on a series

RE: Special Characters driving me nuts

2003-03-10 Thread Joshua Miller
I HAVE to use URLEncodedFormat to store the data. Unfortunately what I have to do is allow a preview of the user's submission, but there are around 50 fields I have to store that typically go into about 6 different tables, so I'm storing everything as a name=value;name=value; string in a table,

RE: Dreamweaver changing code on me

2003-03-10 Thread Haggerty, Mike
As an off and on DW user, I have been downloading your behaviours for years. Before I learned javascript, I relied on you. Good work, and nice to see you here! M -Original Message- From: Massimo, Tiziana e Federica [mailto:[EMAIL PROTECTED] Sent: Monday, March 10, 2003 4:45 PM To:

Re: Special Characters driving me nuts

2003-03-10 Thread Dina Hess
Joshua, All will be well if you send your form data directly to the DB in a CFQUERYPARAM tag ***without applying any functions***. That's especially important if you're using MX because there's an apostrophe bug that only occurs when Trim() is applied to parameter values inserted into or updating

Re: RE: Special Characters driving me nuts

2003-03-10 Thread ksuh
In your preview table, how about having two columns, one for name, another for value. That way, you can easily just urlEncode() each of those two columns for the link, while you can still directly output the equals and semicolons/ - Original Message - From: Joshua Miller [EMAIL

cfgrid issues

2003-03-10 Thread charlie griefer
Hey All: Having some issues with cfgrid. I inherited this application that uses cfgrid to allow certain staff members to update a db table directly. This was built on CF 4.5, and we're now on 5.0 (we have been for around 6 months now). I don't know if it just broke now (which would be

RE: CFC theory

2003-03-10 Thread Raymond Camden
People know they can do this - the problem I think is simply the documentation. I think people wanted this concept (of the private scope and This) to be a bit more fleshed out. Also, in 'normal' CFML pages, you can dump all local variables by dumping the Variables scope. Even though private

MM Owns my Devex ... SOLVED

2003-03-10 Thread Matt Robertson
I've been in contact with Scott Fegette at MM on another matter regarding my DevEx tags and, having heard about this DevEx thread, he said the following (excerpt reprinted w/his permission below). Once I got over my initial reaction to seeing that contract wording this seemed more and more

Re: OpenForums coders

2003-03-10 Thread Dimo Michailov
Howard, I assume that you are talking about the FB3 OpenForums... I have integrated this into several sites successfully, although I had to do several manipulations on the code. Plese contact me off-list if you still need to talk about this, or if you think it would be beneficial to the CF

Re: CFMAIL stuck...

2003-03-10 Thread Jochem van Dieten
Ian Lurie wrote: Ugh. Any long term solution to this problem? I think you need to ask Macromedia if they plan to fix bug #27653. What if it happens again? Same workaround. Is there a good replacement for CFMAIL that won't do this to me? You could use cffile to write directly to the

CFC theory

2003-03-10 Thread Brad Howerter
If you use private as your scope, you could dump it with cfdump var=#private#. People know they can do this - the problem I think is simply the documentation. I think people wanted this concept (of the private scope and This) to be a bit more fleshed out. Also, in 'normal' CFML pages, you can

cfdump

2003-03-10 Thread Robert Shaw
Hi, How do I dump the results of cfstoredproc using cfdump? TIA ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4

RE: CFC theory

2003-03-10 Thread Raymond Camden
Yep, and that's what I would recommend as well. -RC If you use private as your scope, you could dump it with cfdump var=#private#. People know they can do this - the problem I think is simply the documentation. I think people wanted this concept (of the private scope and This) to

RE: CFMAIL stuck...

2003-03-10 Thread Barney Boisvert
I'd advise against writing the messages directly. The formatting issues are hellish to deal with. Certainly not impossible, but a large pain in the ass. I'd highly recommend finding some custom tag that'll do it for you. CF_ADVANCEDEMAIL is such a tag, but I haven't used it in a couple years,

Re: Special Characters driving me nuts

2003-03-10 Thread Dina Hess
Oops...didn't see this before I posted. ~Dina - Original Message - From: Joshua Miller [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, March 10, 2003 3:52 PM Subject: RE: Special Characters driving me nuts I HAVE to use URLEncodedFormat to store the data. Unfortunately

RE: cfdump

2003-03-10 Thread Barney Boisvert
cfstoredproc ... cfprocresult name=rs1 / cfprocresult name=rs2 resultset=2 / /cfstoredproc cfdump var=#rs1# / cfdump var=#rs2# / -Original Message- From: Robert Shaw [mailto:[EMAIL PROTECTED] Sent: Monday, March 10, 2003 2:26 PM To: CF-Talk Subject: cfdump Hi,

RE: Special Characters driving me nuts

2003-03-10 Thread Douglas.Knudsen
are you using method=GET in your form post If not, I see no reason to use URLEncodedformat. Use cfqueryparam to ensure data is escaped as needed on the way into your DB. When you display it, then use HTMLEditFormat or my previous suggestions on replace...blah...blah... the

RE: Dreamweaver changing code on me

2003-03-10 Thread Cantrell, Adam
Dave, I'll certainly let you know if I find a fix for the grayed out buttons - they're still gray. I agree that it's frustrating, but after reading some of the threads about Dreamweaver, I promised myself before going into this that I wouldn't get frustrated, and that I would try my hardest to

Re: CFMAIL stuck...

2003-03-10 Thread Jochem van Dieten
Barney Boisvert wrote: I'd advise against writing the messages directly. The formatting issues are hellish to deal with. It is not that bad, you just need a fetish for reading RFCs ;-) CF_ADVANCEDEMAIL is such a tag, but I haven't used it in a couple years, so I have no idea if it's still

RE: Special Characters driving me nuts

2003-03-10 Thread James Alexander
Another suggestion would be to manually set the encoding on the specific protocol (replacing the charset w/ whatever charset you need): cfset setEncoding(URL,iso-8859-1) or cfset setEncoding(FORM,iso-8859-1) Hope this helps. - James -Original Message- From: [EMAIL PROTECTED]

Re: Dreamweaver changing code on me

2003-03-10 Thread Massimo, Tiziana e Federica
I want to believe that Dreamweaver can make a good text editor!! As much as I love DW, I still think it's overkilling if all you want is a text editor... Homesite is alive and kicking, the 5.2 updater shipped recentely, I would take a look at it Instead, if you really want to enjoy the

RE: ASP.NET

2003-03-10 Thread Gary W. Sullivan II
As a MCAD.NET, I can safely recommend the majority of MS Press books dealing with .NET, seeing as those are the only materials I used to study for the exams. It seems as though you've made up your mind to go with VB.NET, but I would strongly encourage you learning C# instead. Also, Apress has

RE: Inserting date/time stamp

2003-03-10 Thread FlashGuy
Right, but the idea I was trying to achieve was to keep the look the same (with the input field) so it matches the rest of the form. From: FlashGuy [EMAIL PROTECTED] How can I stop people of editing the input line where I'm dumping the date? I don't want them to be able to change it.

RE: Inserting date/time stamp

2003-03-10 Thread Scott Brady
-- Original Message -- From: FlashGuy [EMAIL PROTECTED] Right, but the idea I was trying to achieve was to keep the look the same (with the input field) so it matches the rest of the form. In that case, you can try things like disabling it ( disabled=yes

Re: Inserting date/time stamp

2003-03-10 Thread jonhall
I'm not sure if this was resolved, but I read the thread and I have a quick bit to add. Both the disabled and the readonly were mentioned, and these are both supported in all the browsers except N4. The difference is that a disabled form field will not be submitted with the form, and readonly

RE: CFMX Linux JDBCPool Timeout

2003-03-10 Thread Paul Hassinger
Hmmm, well I have now done a re-install of apache to 2.0.44 to accomodate CF Updater2. It appears I have the same issue. I have checked the mysql.err file for errors and have found none. I don't beleive this to be a database issue with MySQL since when I change the timeout period of the maintain

Re-ordering table records

2003-03-10 Thread Tilbrook, Peter
What would be the best (web based) way to provide a sorting feature of records in a database table (eg: move up/down). Cheers! == Peter Tilbrook Internet Applications Developer Australian Building Codes Board GPO Box 9839 CANBERRA ACT 2601 AUSTRALIA WWW: http://www.abcb.gov.au/ E-Mail:

RE: Inserting date/time stamp

2003-03-10 Thread Matthew Walker
I'd strongly recommend then using the readonly flag, but don't give the field a name. Use a hidden field to contain the date as well as the visible readonly field. It can't hurt, right? -Original Message- From: FlashGuy [mailto:[EMAIL PROTECTED] Sent: Tuesday, 11 March 2003 11:47 a.m.

RE: Re-ordering table records

2003-03-10 Thread Matthew Walker
How about this? (See example #3) http://www.mattkruse.com/javascript/selectbox/ -Original Message- From: Tilbrook, Peter [mailto:[EMAIL PROTECTED] Sent: Tuesday, 11 March 2003 11:43 a.m. To: CF-Talk Subject: Re-ordering table records What would be the best (web based) way to provide a

Re: Dreamweaver changing code on me

2003-03-10 Thread Dave Carabetta
Dave, I'll certainly let you know if I find a fix for the grayed out buttons - they're still gray. I agree that it's frustrating, but after reading some of the threads about Dreamweaver, I promised myself before going into this that I wouldn't get frustrated, and that I would try my hardest to

Javascript Signed Scripting Re: window.close question?

2003-03-10 Thread Jann VanOver
Mozilla has a write up on signed javascripting: http://www.mozilla.org/projects/security/components/signed-scripts.html There's an old (Netscape 4.0) article here: http://polaris.umuc.edu/~mgaylor/SignedScripts.html And some Netscape/Gekko notes at http://devedge.netscape.com/central/security/

Re: Dreamweaver changing code on me

2003-03-10 Thread Dave Lyons
if i was you i'd consider uninstalling and reinstalling dwmx. check out this link http://www.joexx.de/DW-Exporter/download_en.php that will make it a breeze i think it will cure your woes dave - Original Message - From: Dave Carabetta [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED]

Re: CFMX Linux JDBCPool Timeout

2003-03-10 Thread Jochem van Dieten
Paul Hassinger wrote: Hmmm, well I have now done a re-install of apache to 2.0.44 to accomodate CF Updater2. It appears I have the same issue. I have checked the mysql.err file for errors and have found none. I don't beleive this to be a database issue with MySQL since when I change the

<    1   2   3   >