Need to prevent javascript from being submitted in form

2002-07-22 Thread Vishal Narayan
I have a form with a number of text and textarea fields. Information submitted is then written to a SQL Server Database. I want to prevent users from typing in potentially malicious javascript in any of these fields. One option is to loop through all the submitted form variables before

Need to prevent javascript from being submitted in form

2002-07-22 Thread Vishal Narayan
I have a form with a number of text and textarea fields. Information submitted is then written to a SQL Server Database. I want to prevent users from typing in potentially malicious javascript in any of these fields. One option is to loop through all the submitted form variables before

Re: Need to prevent javascript from being submitted in form

2002-07-22 Thread Douglas Brown
Use htmlEditFormat(yourFieldName) Douglas Brown Email: [EMAIL PROTECTED] - Original Message - From: Vishal Narayan [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Saturday, July 21, 2001 11:51 PM Subject: Need to prevent javascript from being submitted in form I have a form

RE: Browserhawk, 2

2002-07-22 Thread Kola Oyedeji
Hi Been a while since I used it but from what I can remember the docs said something about full support for cf. However when we wanted to do specific things (cant remember what) but I remember it was important for the particular project, the docs said that in order to achieve what we wanted to

RE: CFERROR e-mail

2002-07-22 Thread Charles McElwee
Thank you Dave Matt for clarifying this for me... I have found that it is good to use both cferror tags; most error WILL be caught by the exception tag and you will be automatically notified. Some errors (I've never figured out exactly which ones) slip through and your user may click on

Setting a dynamically built list as a session variable.

2002-07-22 Thread Adams, Stephen
** WESTMINSTER CITY COUNCIL Please refer to the disclaimer beneath this message ** Hi, I have a form page that creates a list of checkboxes that have been

RE: Setting a dynamically built list as a session variable.

2002-07-22 Thread Hugo Ahlenius
Stephen, What I did was to produce a string of it, with ones and zeroes, and the different parameters alphabetically like 101010012. This generated through a loop of the different checkboxes alphabetically. Not a very beautiful solution, but it works. Since it is a session var, it shouldn't

RE: Setting a dynamically built list as a session variable.

2002-07-22 Thread John McCosker
When you loop through in Javascript, set a variable which will append the values of the checked boxes, I'm not sure which if block you want to do it in as you are unchecking checked boxes and checking unchecked, so I take it you mean the ones you are checking, var checkList = '' if

RE: Setting a dynamically built list as a session variable.

2002-07-22 Thread Kola Oyedeji
Hi Hi Perhaps you could create a structure using the form names as keys Then the structure would only consist of those which have been checked, you could use functions to check if particular keys exist to determine if a value is part of the structure and you can save this structure to session

RE: Setting a dynamically built list as a session variable.

2002-07-22 Thread John McCosker
Sorry once you have finisehd the loop, call setSession, setSession(), make checkList a global var and not a function dependent var, j -Original Message- From: John McCosker [mailto:[EMAIL PROTECTED]] Sent: Monday, July 22, 2002 11:47 AM To: CF-Talk Subject: RE: Setting a

RE: Setting a dynamically built list as a session variable.

2002-07-22 Thread John McCosker
Sorry I'ma twat, setSession(checkList) function setSession(catchList){ location.href = setSession.cfm?sessionData= + catchList } that will work -Original Message- From: John McCosker [mailto:[EMAIL PROTECTED]] Sent: Monday, July 22, 2002 11:53 AM To: CF-Talk Subject: RE:

RE: Setting a dynamically built list as a session variable.

2002-07-22 Thread Kola Oyedeji
Also There is automatically a form field created by cf called form.fieldnames Which is list of all submmited fields, You could loop through this list copying all fields which begin with the Prefix business_types to another list. You could then decide to take the portion of the name minus the

OT : Anybody had problems with hiermenus ???

2002-07-22 Thread Ian Vaughan
Hi Has anybody on the CF Talk list had much experience with hiermenus? I have been very grateful if someone on the list could spare a minute , to help me solve a small problem I am having with the script. I am trying to get the hiermenus script working correctly however I am running into some

Re: Setting a dynamically built list as a session variable.

2002-07-22 Thread Stephen Moretti
Stephen, First up. You don't need to name each of your checkboxes seperately, so change the input tag to this : input type=checkbox name=business_types value=#bus_type# and your javascript to this : script language=JavaScript !-- Begin function checkAll() { for (var j = 1; j =

RE: Setting a dynamically built list as a session variable.

2002-07-22 Thread Kola Oyedeji
I'd go with that as well, seems like the best option! Kola -Original Message- From: Stephen Moretti [mailto:[EMAIL PROTECTED]] Sent: 22 July 2002 12:24 To: CF-Talk Subject: Re: Setting a dynamically built list as a session variable. Stephen, First up. You don't need to name each of

RE: Setting a dynamically built list as a session variable.

2002-07-22 Thread Tangorre, Michael
How come you do not have to lock on MX? -Original Message- From: Stephen Moretti [mailto:[EMAIL PROTECTED]] Sent: Monday, July 22, 2002 7:24 AM To: CF-Talk Subject: Re: Setting a dynamically built list as a session variable. Stephen, First up. You don't need to name each of your

RE: Setting a dynamically built list as a session variable.

2002-07-22 Thread Tangorre, Michael
nevermind, found the article on it: http://www.macromedia.com/v1/Handlers/index.cfm?ID=23021Method=Full mike -Original Message- From: Tangorre, Michael Sent: Monday, July 22, 2002 7:26 AM To: CF-Talk Subject: RE: Setting a dynamically built list as a session variable. How come you

Re: Setting a dynamically built list as a session variable.

2002-07-22 Thread Stephen Moretti
nevermind, found the article on it: http://www.macromedia.com/v1/Handlers/index.cfm?ID=23021Method=Full mike How come you do not have to lock on MX? Heh heh. The power of Java for you. __ Get the

RE: Setting a dynamically built list as a session variable.

2002-07-22 Thread Adams, Stephen
** WESTMINSTER CITY COUNCIL Please refer to the disclaimer beneath this message ** Well, thanks for all the replys. They have all been very helpful. I've

Finding a good Session management system.

2002-07-22 Thread Adams, Stephen
** WESTMINSTER CITY COUNCIL Please refer to the disclaimer beneath this message ** Hi, I have been building CF sites for a while now and I am always finding

RE: Finding a good Session management system.

2002-07-22 Thread John McCosker
Don't use session variables, but use cookies which maintain session state when the browser is open and deleted when closed. -Original Message- From: Adams, Stephen [mailto:[EMAIL PROTECTED]] Sent: Monday, July 22, 2002 1:54 PM To: CF-Talk Subject: Finding a good Session management

DWMX - Monitor page design time

2002-07-22 Thread Bosky, Dave
Are there any plugs that can track the amount of design time a developer puts into a page? Dave DISCLAIMER: The information contained in this message may be privileged and confidential and protected from disclosure. If the reader of this message is not the intended recipient, or an

RE: Finding a good Session management system.

2002-07-22 Thread todd
That was a pretty vague and not very helpful answer John. Stephen, what all are you storing in session variables? Could you describe your application a little more? I've always tried to make sure that I'm using session variables as little as possible anymore. I've moved majority of my

Re: Finding a good Session management system.

2002-07-22 Thread Stephen Moretti
Bah Humbug Use Client variables Just don't forget that you must change the default client store from registry to a datasource (whatever the operating system you're running on) otherwise your registry will either fill up quickly or just slow your application down horrendously. Better

RE: Finding a good Session management system.

2002-07-22 Thread Adams, Stephen
** WESTMINSTER CITY COUNCIL Please refer to the disclaimer beneath this message ** Well, the application I am building at the moment uses a series of forms to

RE: Finding a good Session management system.

2002-07-22 Thread John McCosker
Thanks for flaming me Todd, my suggestion was a general hint of a direction in which to contemplate based on the information given, I am always finding myself creating/deleting and checking for session variables or changing them into request variables It always seems to me that there must be a

RE: Finding a good Session management system.

2002-07-22 Thread Adams, Stephen
** WESTMINSTER CITY COUNCIL Please refer to the disclaimer beneath this message ** Hi, I like you idea have you got a small example of this so I can see exatly

Re: DWMX - Monitor page design time

2002-07-22 Thread Valerie L. Criswell
Not sure what you mean by plugs, but I use this piece of software to keep up with the time I spend on my hourly clients' work. We've used it for over a year now with no complaints. http://www.spudcity.com/traxtime/traxtime.htm hth, ~val - Original Message - From: Bosky, Dave [EMAIL

RE: DWMX - Monitor page design time

2002-07-22 Thread Bosky, Dave
Does it work by using a checkout/checkin time? If so could I use MS SourceSafe to accomplish this? Dave -Original Message- From: Valerie L. Criswell [mailto:[EMAIL PROTECTED]] Sent: Monday, July 22, 2002 9:32 AM To: CF-Talk Subject: Re: DWMX - Monitor page design time Not sure what

RE: Finding a good Session management system.

2002-07-22 Thread todd
Wasn't a flame -- just a statement. ~Todd On Mon, 22 Jul 2002, John McCosker wrote: Thanks for flaming me Todd, my suggestion was a general hint of a direction in which to contemplate based on the information given, I am always finding myself creating/deleting and checking for session

RE: Finding a good Session management system.

2002-07-22 Thread Michael Ross
This doesn't really help...I don't think he asked whether to use client or sessions. [EMAIL PROTECTED] 07/22/02 09:01AM Don't use session variables, but use cookies which maintain session state when the browser is open and deleted when closed. -Original Message- From: Adams,

Re: non-integer array indexes??

2002-07-22 Thread Chris Edwards
Does it have to be an Array, why not use a structure? Its 2 dimensional. Structs are one dim. Right? Can there be non-integer array indexes? I've tried a workaround... cfset fields=ArrayNew(2) cfset ArtistID=1 cfset ArtistEmail=2 cfset ArtistFirstName=3 cfset label=1 cfset

RE: Finding a good Session management system.

2002-07-22 Thread todd
Stephen, perhaps shoving everything into the variable scope isn't what you need then. If you're going from form to form, it wouldn't be that hard to loop around the form.fieldnames to set hidden form fields onto the next page to continue to pass on that information. I have a similiar

Re: Finding a good Session management system.

2002-07-22 Thread Stephen Moretti
I like you idea have you got a small example of this so I can see exatly what you talking about. Yup !--- Application.cfm --- cflock scope=SESSION type=READONLY cfset request.sessionvar = Duplicate(session) /cflock !--- Other files --- cfoutput #request.sessionvar.userid#/cfoutput

SQL Help

2002-07-22 Thread Tipton Josh (orl1jdt)
Since lovely M$ Sql does not have a select last_day function like oracle I was wondering if anyone had written a script that will take the month number and return either the number of days or the last day of that month? Thanks, Josh

RE: Finding a good Session management system.

2002-07-22 Thread Adams, Stephen
** WESTMINSTER CITY COUNCIL Please refer to the disclaimer beneath this message ** Thanks, this is very helpful. -- From: Stephen

RE: Finding a good Session management system.

2002-07-22 Thread S . Isaac Dealey
Wasn't a flame -- just a statement. ~Todd So.. my advice to you is to do a cfdump var=#session# (proper locks around of course) and take a good hard look at what really should / shouldn't be there. ~Todd I worked for a while at an education-management company ( they manage k-12 schools

Re: DWMX - Monitor page design time

2002-07-22 Thread Valerie L. Criswell
I'm independent, so while I know about SourceSafe, I don't have experience with it. TraxTime can indeed run on a network and there is a management version that will compile all employee's times into one report. We use one copy of the regular version on my machine (where I write CF apps) and one

RE: Finding a good Session management system.

2002-07-22 Thread todd
On Mon, 22 Jul 2002, S. Isaac Dealey wrote: I worked for a while at an education-management company ( they manage k-12 schools for people who own / operate them, but don't know what they're doing :) where I found username and password (among other things) in a dump of the session

RE: Finding a good Session management system.

2002-07-22 Thread Robert Everland
What's so bad with passing the username and password in the session structure? You wouldn't be able to steal anyone else's session unless you had a problem with firewalls, and you would end up having the same issue no matter what kind of management you used. Robert Everland III Web Developer

Re: non-integer array indexes??

2002-07-22 Thread mark brinkworth
You can have a structure of structures, a structure of arrays, arrays of structures. However complex you want. Cheers From: Chris Edwards [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: Re: non-integer array indexes?? Date: Mon, 22 Jul 2002 09:43:57 -0400

Re: Finding a good Session management system.

2002-07-22 Thread S . Isaac Dealey
Better ways of handling your session variables. Copy your entire session scop to a request variable in Application.cfm and back again in onRequestEnd.cfm. This way during the users request to site whatever session variable you need is in the request scope. No messing with cflocks in

RE: Finding a good Session management system.

2002-07-22 Thread todd
Nothing wrong with sessions, until you've experienced your first session corruption / leak - then you'll see why this isn't a good idea. ~Todd On Mon, 22 Jul 2002, Robert Everland wrote: What's so bad with passing the username and password in the session structure? You wouldn't be able to

Re: Finding a good Session management system.

2002-07-22 Thread Bill Wheatley
Use client variables if they are going to be less then 32k (i think it was) or you will mess up your client variable storage and have to rebuild them. Bill Wheatley Senior Database Developer Macromedia Certified Advanced Coldfusion Developer EDIETS.COM 954.360.9022 X159 ICQ 417645 - Original

Re: SQL Help

2002-07-22 Thread S . Isaac Dealey
Since lovely M$ Sql does not have a select last_day function like oracle I was wondering if anyone had written a script that will take the month number and return either the number of days or the last day of that month? Is there a particular reason it needs to be in the db? ... declare

RE: Finding a good Session management system.

2002-07-22 Thread Cornillon, Matthieu
Stephen, I am not going to comment on the client vs. session variable issue that everyone else is talking about. I am awfully ignorant about client variables, and I am learning from those other messages as they come. I can, however, offer some advice on the approach to a multi-page form with

RE: Finding a good Session management system.

2002-07-22 Thread Eugene, Joseph
Client Variables in database storage holds default 120k but you increase the size of the data fields.. at least this is what the documentation says. WDDX and Client variables would be a good option. Joe Certified Advanced ColdFusion Developer -Original Message- From: [EMAIL PROTECTED]

RE: Finding a good Session management system.

2002-07-22 Thread Cornillon, Matthieu
Todd, What is session corruption/leak? I'm worried. :) Matthieu -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, July 22, 2002 10:21 AM To: CF-Talk Subject: RE: Finding a good Session management system. Nothing wrong with sessions, until you've

Re: non-integer array indexes??

2002-07-22 Thread S . Isaac Dealey
Does it have to be an Array, why not use a structure? Its 2 dimensional. Structs are one dim. Right? A structure can contain structures, which is analogous of an array containing arrays, which is what a 2d array in cf is... So... What would be something like this in an array 1 2 3

Re: Finding a good Session management system.

2002-07-22 Thread S . Isaac Dealey
Use client variables if they are going to be less then 32k (i think it was) or you will mess up your client variable storage and have to rebuild them. Who stores more than 32k in a persistent scope variable? ... Isaac Dealey www.turnkey.to 954-776-0046

RE: Finding a good Session management system.

2002-07-22 Thread Adams, Stephen
** WESTMINSTER CITY COUNCIL Please refer to the disclaimer beneath this message ** Matthieu, Thanks for sharing this, its a nice idea. It is the kind of thing

RE: Finding a good Session management system.

2002-07-22 Thread S . Isaac Dealey
On Mon, 22 Jul 2002, S. Isaac Dealey wrote: I worked for a while at an education-management company ( they manage k-12 schools for people who own / operate them, but don't know what they're doing :) where I found username and password (among other things) in a dump of the session

RE: Finding a good Session management system.

2002-07-22 Thread todd
Well, this occured back in the good ol' days when we were upgrading from 4.01 to 4.5 and ... learning the hard way about cflocks :) However if you have all the appropriate locks in place and stuff, you shouldn't see this happening. ~Todd On Mon, 22 Jul 2002, Cornillon, Matthieu wrote:

RE: multifunction anchor

2002-07-22 Thread UXB Internet
Be sure that there are no spaces in the anchor name. Netscape dos not like spaces very much. Best regards, Dennis Powers UXB Internet - A Web Design and Hosting Company tel: (203)879-2844 fax: (203)879-6254 http://www.uxbinternet.com/ http://dennis.uxb.net/ -Original Message- From:

RE: Finding a good Session management system.

2002-07-22 Thread todd
On Mon, 22 Jul 2002, S. Isaac Dealey wrote: I'm curious, why username? In this particular case it was a blunder -- the username wasn't ever used anywhere outside of the login, so there was no need to have it as a persistent variable... and I generally try to avoid using either of them

RE: Finding a good Session management system.

2002-07-22 Thread S . Isaac Dealey
On Mon, 22 Jul 2002, S. Isaac Dealey wrote: I'm curious, why username? In this particular case it was a blunder -- the username wasn't ever used anywhere outside of the login, so there was no need to have it as a persistent variable... and I generally try to avoid using either of them

SMTP Authentication w/CFMAIL tag?

2002-07-22 Thread Bosky, Dave
Our network admin told me I need to add smtp authentication in my cf email application. Currently users simply login with their pop server info (server,user,pwd) to retrieve and send mail. How can I add SMTP authentication using the cfmail tag? Thanks, Dave DISCLAIMER: The information

RE: SMTP Authentication w/CFMAIL tag?

2002-07-22 Thread Ben Doom
If you supply the username and password in the cfmail tag, it should support SMTP authentication. I don't know offhand if this supports encrypted logins or just plaintext. --Ben Doom Programmer General Lackey Moonbow Software : -Original Message- : From: Bosky, Dave

Elaborate plan...

2002-07-22 Thread Neil H.
I have an application I am working on... I want each portion of the code to send an HTTP request to a page and respond back to my page, however I want the calling page to refresh. I really want some sort of a status maybe a % complete, but how do I get the page to constantly refresh. Any ideas

RE: SMTP Authentication w/CFMAIL tag?

2002-07-22 Thread Bosky, Dave
I didn't see an option to supply username/password in the mail tag. What version of CF are you using. Dave -Original Message- From: Ben Doom [mailto:[EMAIL PROTECTED]] Sent: Monday, July 22, 2002 11:34 AM To: CF-Talk Subject: RE: SMTP Authentication w/CFMAIL tag? If you supply the

RE: Elaborate plan...

2002-07-22 Thread Shawn Grover
You're going to hear references to Metatag refresh, and HTTP Header refresh options. Judging from your statements, I think these would not be the best solution. If you are dealing with IE only, you can use IFRAMES (in Netscape, I think the equivalent is a Layer). In Javascript on the main

Re: Elaborate plan...

2002-07-22 Thread Neil H.
Thanks.. You don't happen to know an example of this anywhere do you? Neil - Original Message - From: Shawn Grover [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, July 22, 2002 11:58 AM Subject: RE: Elaborate plan... You're going to hear references to Metatag refresh,

Re: Elaborate plan...

2002-07-22 Thread Jeffry Houser
Wasn't there an article on how to do a status bar in CF5? ( Oh, where is Ray when you need him--I think he wrote it? ) You can do something with cfflush and layers, I believe. At 11:37 AM 7/22/2002 -0400, you wrote: I have an application I am working on... I want each portion of the code

Looping thru recordset

2002-07-22 Thread Andy Ewings
I think I already know the answer to this but is there a way of determining the position in a recordset of a particular value without having to loop thru it.? I have a recordset stored in an application variable which I want to query (CF 5) to find the pos of this record. I then want to get

RE: SMTP Authentication w/CFMAIL tag?

2002-07-22 Thread Ben Doom
Erk. Brain lost traction. Was thinking of something else entirely. Apologies. --Ben Doom Programmer General Lackey Moonbow Software : -Original Message- : From: Bosky, Dave [mailto:[EMAIL PROTECTED]] : Sent: Monday, July 22, 2002 11:50 AM : To: CF-Talk : Subject: RE: SMTP

browse to mdb and java error problem.

2002-07-22 Thread Smith, Matthew P -CONT(DYN)
java.lang.NoClassDefFoundError: netscape/application/Target I'm trying to register a local access mdb in 127.0.0.1/cfide/administrator When I click on the Browse Server for Database File under odbc, it installed a cab, then the java window in the browser just shows this error message and sits

Re: Elaborate plan...

2002-07-22 Thread S . Isaac Dealey
I have an application I am working on... I want each portion of the code to send an HTTP request to a page and respond back to my page, however I want the calling page to refresh. I really want some sort of a status maybe a % complete, but how do I get the page to constantly refresh. Any

OT Restore DB In SQL7

2002-07-22 Thread Double Down
I have a back up of a db in SQL 7 that I need to restore on my live server. When I do the transfer and then try to open up a table I get an error that says Query designer encountered as query error. Can anyone please tell me the proper steps to get this db up and running. TIA DDINC

WAY Way OT: Typist Bold Font

2002-07-22 Thread Kris Pilles
Hopefully somebody out there can help. Prior to my existence here, we had a design firm build some templates and they used Typist Bold as one of their fonts I have been able to find every other font except this one Does anyone know where I can get this font from??? Please help KP

RE: IIS Problem - HELP!

2002-07-22 Thread Paul Begovich
IIS Version - 5 Win2k box - The images appears broken. I can't give you a url because it's a protected internal server of the clients. Thanks! - Paul -Original Message- From: Christopher Olive [mailto:[EMAIL PROTECTED]] Sent: Sunday, July 21, 2002 11:18 AM To: CF-Talk Subject: RE:

RE: WAY Way OT: Typist Bold Font

2002-07-22 Thread Justin Hansen
ask the design firm for it -Original Message- From: Kris Pilles [mailto:[EMAIL PROTECTED]] Sent: Monday, July 22, 2002 11:23 AM To: CF-Talk Subject: WAY Way OT: Typist Bold Font Hopefully somebody out there can help. Prior to my existence here, we had a design firm build some

Re: Looping thru recordset

2002-07-22 Thread S . Isaac Dealey
I think I already know the answer to this but is there a way of determining the position in a recordset of a particular value without having to loop thru it.? I have a recordset stored in an application variable which I want to query (CF 5) to find the pos of this record. I then want to

RE: IIS Problem - HELP!

2002-07-22 Thread Christopher Olive
take a look at the page. do a view source. look at the SRC of the IMG tag. is it actually correct? -Original Message- From: Paul Begovich [mailto:[EMAIL PROTECTED]] Sent: Monday, July 22, 2002 12:25 PM To: CF-Talk Subject: RE: IIS Problem - HELP! IIS Version - 5 Win2k box - The

RE: WAY Way OT: Typist Bold Font

2002-07-22 Thread Kris Pilles
Ohh... I failed to mention they are no longer around... -Original Message- From: Justin Hansen [mailto:[EMAIL PROTECTED]] Sent: Monday, July 22, 2002 12:29 PM To: CF-Talk Subject: RE: WAY Way OT: Typist Bold Font ask the design firm for it -Original Message- From: Kris Pilles

RE: Looping thru recordset

2002-07-22 Thread Chris Lofback
Here's a possible CF solution: CFSET TargetValue = value you are looking for here CFSET StartRow = ListFind(ArrayToList(MyQuery[MyField]),TargetValue) CFOUTPUT QUERY=MyQuery STARTROW=#StartRow# BR#MyField# /CFOUTPUT Chris Lofback Sr. Web Developer TRX Integration 28051 US 19 N.,

RE: Elaborate plan...

2002-07-22 Thread Shawn Grover
This is off the top of my head (so keep in mind that I could be guessing on some items) Main Page: script language=javascript setInterval(GetProgress, 1000) //run the GetProgress function every second function GetProgres() {

RE: Looping thru recordset

2002-07-22 Thread Andy Ewings
ah yes - I'll try this and see how performance is effected. Currently we are using this: cfloop query=application.queryname cfif fieldvaue = client.variable cfset whereami = currentrow cfset start = whereami cfbreak /cfif /cfloop cfoutput query=APPLICATION.gettable

RE: Finding a good Session management system.

2002-07-22 Thread Matt Robertson
I'd like to chime into this thread on the side of client variables. I've pretty much abandoned session vars in favor of client vars and - where needed - using wddx to fake a structure if I need it. It works marvelously. The kicker was when I found Hal Helms' tutorial on this. Using in part a

RE: HTTP 500 - Internal Server Error (URGENT)

2002-07-22 Thread Matt Robertson
I've heard the explanation before on this list, but frankly I don't recall it. ;D Just parroting back the advice I got and have seen elsewhere. I, too had a server that worked just fine with everything set to Medium. Then after a reinstall I got 500's everywhere, and learned of the need for

Re: Studio 5 download

2002-07-22 Thread Michael Dinowitz
Thanks. I had gotten it personally from someone and was able to get a little work done. I'm going to suggest this to Judith as a best of talk thread as it is important information. Either that or have it as a side article in FA and a link in the resources on HoF.

Populating a form with query results

2002-07-22 Thread Yexley Robert D Contr Det 1 AFRL/WSI
I have a basic HTML form in a CF document, and I need to be able to populate some of the fields on the form with the results of a database query. I can't seem to find anywhere that explains how to go about doing this. Could somebody point me in the right direction? Thanks in advance. /* ||

Re: SMTP Authentication w/CFMAIL tag?

2002-07-22 Thread Howie Hamlin
I'm not sure about CFMX but CF5.0 and earlier do not support SMTP auth. If you can, try to get your postmaster to assign the IP address of your CF server to an allowed list of IPs so that you don't have to authenticate. If that doesn't work, and you are running Windows, then you may want to

RE: Populating a form with query results

2002-07-22 Thread Matthew Friedman
use the form attribute value=#query.colname# will add the value to the field. If you are using the cfinput value you will not need to wrap the call with the cfoutput if you are using just input do not forget to use the cfoutput tags. matt -Original Message- From: Yexley Robert D Contr

RE: Populating a form with query results

2002-07-22 Thread Ben Doom
I generally do something like this: cfquery name=foo select bar from table /cfquery cfoutput input name=newfoo type=text value=#foo.bar# /cfoutput Hope that helps. Maybe my brain is in gear on this one. :-) --Ben Doom Programmer General Lackey Moonbow

Re: Populating a form with query results

2002-07-22 Thread Alex
www.google.com On Mon, 22 Jul 2002, Yexley Robert D Contr Det 1 AFRL/WSI wrote: I have a basic HTML form in a CF document, and I need to be able to populate some of the fields on the form with the results of a database query. I can't seem to find anywhere that explains how to go about doing

RE: Populating a form with query results

2002-07-22 Thread Margaret Fisk
One other thing is you should do isDefined and provide a blank or default if it is not. Otherwise you get errors if the query returns a null for that field. -Original Message- From: Ben Doom [mailto:[EMAIL PROTECTED]] Sent: Monday, July 22, 2002 10:05 AM To: CF-Talk Subject: RE:

RE: Finding a good Session management system.

2002-07-22 Thread Matthew R. Small
Talking about mulit-page forms... I don't use session or client variables at all when doing multi-page forms. I simply pass the form structure on to the next page in hidden form fields. That way, if somebody chooses to go -Back, then the variables are there in the preceding page code, not the

RE: Finding a good Session management system.

2002-07-22 Thread Stacy Young
I took the same approach before CFMX. I've now moved back to session variables with CFMX's ability to replicate session data across a cluster...less headache in dealing with stored complex structures. (not like it was a HUGE deal using WDDX but is still extra processing) Let's hope I don't live

RE: IIS Problem - HELP!

2002-07-22 Thread Christopher Olive
right. are the client's directory structures the same on both machines? i'm looking for something like this... dev box: http://clienturl points to / / - has all root files /images - has all appropriate images staging - http://clienturl points to / /clientname - has all root files

RE: Finding a good Session management system.

2002-07-22 Thread Cornillon, Matthieu
Damn. This is a good idea. I wish I had known about it before I built this massive session-based system. :) Oh, well. I'll know for next time. Matthieu -Original Message- From: Matthew R. Small [mailto:[EMAIL PROTECTED]] Sent: Monday, July 22, 2002 1:18 PM To: CF-Talk Subject:

cfexecute problems

2002-07-22 Thread Chris Edwards
Tried doing this, but there are no output or errors. I've been able to run the command with a PHP script. cfexecute name=/usr/local/ImageMagick/bin/convert arguments=image1.jpg -sharpen 1x2 -geometry '300x300+0+0' output1.jpg /cfexecute img src=output1.jpg Any thoughts?

List Down?

2002-07-22 Thread Joe Eugene
is the List down? Joe __ This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting. FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives:

Re: OT Restore DB In SQL7

2002-07-22 Thread Bogesdorfer, Dan
Checkout http://www.sqlmag.com instantdoc id number 9808 by Michael D. Reilly Double Down [EMAIL PROTECTED] wrote in message news:01c2319b$d3387660$0100a8c0@ipk... I have a back up of a db in SQL 7 that I need to restore on my live server. When I do the transfer and then try to open up

RE: WAY Way OT: Typist Bold Font

2002-07-22 Thread Erika L. Walker
After a search on Google (http://www.google.com/search?q=Typist+Fonthl=enlr=ie=UTF-8oe=UTF-8) (the supreme ruler of all that is known, second only to Dave Watts ...) I found this link for you in about 60 seconds: http://www.mohaa-ss.freeserve.co.uk/TYPIST.zip Hope that helps ... Erika **

RE: WAY Way OT: Typist Bold Font

2002-07-22 Thread Kris Pilles
THANKS~! -Original Message- From: Erika L. Walker [mailto:[EMAIL PROTECTED]] Sent: Monday, July 22, 2002 1:28 PM To: CF-Talk Subject: RE: WAY Way OT: Typist Bold Font After a search on Google (http://www.google.com/search?q=Typist+Fonthl=enlr=ie=UTF-8oe=UTF-8) (the supreme ruler of

Explorer password saving feature

2002-07-22 Thread Cornillon, Matthieu
Hello. Internet Explorer, when certain settings are set and a user enters a username and password in a form, asks the user: Do you want windows to remember this password, so that you don't have to type it again the next time you visit this page? I know how to disable this on my own computer.

RE: IIS Problem - HELP!

2002-07-22 Thread Paul Begovich
Hmm... I think I know where your going - What if their staging IS completely different than their live - and when they are testing, it's on a stripped down version of IIS that supports only one site, with subdirectories, and their testing on that subdirectory. / would be usesless in referencing.

tracking payments

2002-07-22 Thread Tony Carcieri
Hi all, It's Monday, caffeine intake is low and I am having a brainfreeze. I need to keep track of payments made by the client (amount and date), as well as the commissions paid to the sales reps. The reps get paid each time a client makes a payment; ie if the client pays 1000 of his 2000

SoEditor Pro

2002-07-22 Thread Brook Davies
Hello, We are just about to purchase the SoEditor pro wysiwyg editor form www.siteobjects.com. Before we make the purchase, I thought it would be a good idea to check with this list and solicit some feedback from anyone who has used these components. Any comments? FYI, We are building an

RE: SoEditor Pro

2002-07-22 Thread Mark A. Kruger - CFG
I use the lite version for my cfug site and another intranet ap. Works great - no complaints. It is IE specific though - so it's not so hot for a general public site. -mk -Original Message- From: Brook Davies [mailto:[EMAIL PROTECTED]] Sent: Monday, July 22, 2002 1:23 PM To: CF-Talk

  1   2   >