On Thu, 07 December 2000, CF-Server wrote: > > CF-Server-List Fri, 8 Dec 2000 Volume 1 : Number 9 > > In this issue: > > RE: MDE/Access 2000 > Re: Profile Script gone wrong... > > > ---------------------------------------------------------------------- > > Date: Thu, 07 Dec 2000 08:41:13 -0600 > From: "Bill Edstrom, Jr." <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Subject: RE: MDE/Access 2000 > Message-ID: <[EMAIL PROTECTED]> > > >>>How well would it work using Access 2000/MDE in a client-server > environment, > like one would use SQL server? A couple years ago, we tested using Access > 97 like this, with the database on a separate server and got dismal > performance.<<< > > On the server. MDE is essentially the same engine as SQL Server but without > the admin tools. At least this is my understanding. > > > > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > Structure your ColdFusion code with Fusebox. Get the official book at >http://www.fusionauthority.com/bkinfo.cfm > > ------------------------------ > > Date: Thu, 07 Dec 2000 19:51:29 -0600 > From: "Tony Hicks" <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Subject: Re: Profile Script gone wrong... > Message-ID: <00dc01c060b9$652650c0$c81766a6@realleads> > > Hello Everyone.... > > First of all I owe a thankyou to Mr. Leavers. > > Might I ask somebody how i display the referring url on a page? I don't have > a manual for cold fusion so I rely on tutorials and examples netwide to > teach me.... > > Thanks, > Tony Hicks > Professionally Designed Websites > http://www.righteousdesigns.com > ICQ: 5874143 AIM: Webmigit Y!: Webmigit > mailto:[EMAIL PROTECTED] > Tired of your web host? > http://www.nextmill.net > Need a Domain? Don't have a credit card? > http://www.domainsbycheck.com > Got your Free Online Business Card Yet? > Here's mine: http://thecardfile.com/webmigit.htm > ----- Original Message ----- > From: "Troy Leaver" <[EMAIL PROTECTED]> > To: "CF-Server" <[EMAIL PROTECTED]> > Sent: Wednesday, December 06, 2000 1:37 PM > Subject: Re: Profile Script gone wrong... > > > > Looks like your problem may be in setting the Age column, which I'm > assuming is probably a numeric type column in your database. You need to > remove the quotes so that you do > > > > Age = #form.age# > > > > instead of > > > > Age = '#form.age#' > > > > You may also need to do some data validation, as the input field you're > using will allow someone to enter characters where you want them to enter > numbers. You could use CFFORM & CFINPUT, which will give you some > javascript validation capabilities without much effort. > > > > Regards, > > Troy Leaver > > Systems Development Consultant > > Solution Specialists, Inc. > > > > ---------- Original Message ---------------------------------- > > From: "Tony Hicks" <[EMAIL PROTECTED]> > > Reply-To: [EMAIL PROTECTED] > > Date: Tue, 5 Dec 2000 14:40:27 -0600 > > > > >This is a multi-part message in MIME format. > > > > ------=_NextPart_000_002C_01C05EC9.4FF57E20 > > Content-Type: text/plain; > > charset="iso-8859-1" > > Content-Transfer-Encoding: quoted-printable > > > > Hello, > > > > I'm looking for someone who might help me with updating a databse... = > > here's the background information on what I'm doing... I was recently = > > introduced to the great forums, called hotscripts... and wanted to start = > > a similar indexer and then saw the prices of the good ones and my jaw = > > dropped so I took what I knew of cold fusion and WA-LA I have a great = > > indexer but the problem is that I've added profiles and they work great = > > to... but I cannot make the page update profile information no matter = > > what I do... > > > > here's the source of the page with the update form on it: > > > > -------------------------------------------------------------------------= > > ------- > > > > <cfquery name=3Dreadprofiles datasource=3DCommunity> > > select * from members where username=3D'#un#' > > </cfquery> > > > > <cfoutput query=3D"readprofiles"> > > <form action=3D"index.cfm?job=3Dpsecond&ID=3D#ID#" method=3Dpost> <table = > > cellpadding=3D0 cellspacing=3D0 bgcolor=3Dwhite border=3D0 width=3D100%> > > <tr>=20 > > <td bgcolor=3Dblack bordercolor=3Dwhite><font size=3D2 face=3DArial = > > color=3Dwhite>#un#'s Profile</font></td> > > </tr> > > <tr> > > <td bgcolor=3Dwhite bordercolor=3Dwhite> > > <P align=3D"right"><b>Name:</b> <cfif un is "#username#" and pword is = > > "#password#"><input type=3Dtext name=3DName value=3D"</cfif>#Name#<cfif = > > un is "#username#" and pword is "#password#">"></cfif><BR> > > <b>Location:</b> <cfif un is "#username#" and pword is = > > "#password#"><input type=3Dtext name=3Dlocation = > > value=3D"</cfif>#Location#<cfif un is "#username#" and pword is = > > "#password#">"></cfif><BR> > > <b>Age:</b> <cfif un is "#username#" and pword is "#password#"><input = > > type=3Dtext name=3Dage value=3D"</cfif>#Age#<cfif un is "#username#" and = > > pword is "#password#">"></cfif><BR> > > <b>Gender:</b> <cfif un is "#username#" and pword is = > > "#password#"><input type=3Dtext name=3Dgender = > > value=3D"</cfif>#Gender#<cfif un is "#username#" and pword is = > > "#password#">"></cfif><BR> > > <b>Interests:</b> <cfif un is "#username#" and pword is = > > "#password#"><textarea name=3Dinterests></cfif>#Interests#<cfif un is = > > "#username#" and pword is "#password#"> To see My profile visit me at : http://www.netcolony.com/technology/rajeevpareek/ ______________________________________________________ Listen to your favorite music while you work! - http://www.com/ ------------------------------------------------------------------------------ To unsubscribe, send a message to [EMAIL PROTECTED] with 'unsubscribe' in the body or visit the list page at www.houseoffusion.com
