RE: NT event log grabber / reader???

2001-04-09 Thread Tumy, Brad

Ben Forta wrote a tag to display the event log...I am pretty sure about
this...I would do a search for all tags written by Forta

-Original Message-
From: Mark W. Breneman [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 09, 2001 2:15 PM
To: CF-Talk
Subject: NT event log grabber / reader???



Has anyone built a Custom tag, or other wise, that can display the NT event
log on a HTML page or e-mail?

I have checked the Developers Exchange.  Only thing there is tags to write
to the event log.

Thanks

Mark W. Breneman
-Cold Fusion Developer
-Network Administrator
  Vivid Media
  [EMAIL PROTECTED]
  www.vividmedia.com
  608.270.9770
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: SMTP Server

2001-04-09 Thread Tumy, Brad

can't you just use pop3.microsoft.com like everyone else in the free world
:) 

sorry, just kidding.

Check with your host...most of them have SMTP configured.

-Original Message-
From: Cameron Childress [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 09, 2001 4:23 PM
To: CF-Talk
Subject: RE: SMTP Server


For SMTP, you should usually be allowed to use the ISP's mailserver.  They
almost always will aloow you to send outgoing mail through their server,
even if you don't use them for your POP accounts.

-Cameron


Cameron Childress
elliptIQ Inc.
p.770.460.7277.232
f.770.460.0963

 -Original Message-
 From: Brian bouldernet [mailto:[EMAIL PROTECTED]]
 Sent: Monday, April 09, 2001 3:55 PM
 To: CF-Talk
 Subject: Re: SMTP Server


 Don't have one we outsource it for virus protection etc...
 - Original Message -
 From: "Nick McClure" [EMAIL PROTECTED]
 To: "CF-Talk" [EMAIL PROTECTED]
 Sent: Monday, April 09, 2001 12:37 PM
 Subject: Re: SMTP Server


  Any reason why you can't run your own smtp server?
 
 
  At 12:16 PM 4/9/2001 -0700, you wrote:
  We have client that is hosting offsite. They now have the need to
  generating email messages via CFMAIL. Anyone know of a company we can
 send
  through for a monthly fee without moving locations?
  
  
  
 
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Numberformat question.

2001-04-05 Thread Tumy, Brad

can't you output like this:

$#numberformat(number,mask)#

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 05, 2001 11:36 AM
To: CF-Talk
Subject: Numberformat question.


I have a situation where I need to display a price with either 2, 3 or 4
digits after the decimal place.  The database is storing the information
properly, but I need to format the display to "trim" the output.

For example, I have three prices for four items:

Item 1 has a price of 45.9
Item 2 has a price of 9.99
Item 3 has a price of 2.985
Item 4 has a price of 0.4585

I need the price to display as $45.90 for Item 1, $9.99 for Item 2, $2.985
for item 3 and $0.4585 for item 4.  I know I can't use DollarFormat, since
it trims at two decimal places.  The question is, how do I set up the
NumberFormat to show the pricing properly when possible top-ends are up to
$999,999,999.?

TIA
Hatton
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Concurrent users and client certificates

2001-04-04 Thread Tumy, Brad

Kevin,

add a boolean field to your user table called "loggedin" ...when you query
the table to authenticate check the value of this field...if 0...user can
log in...otherwise "sorry you are already logged in"...be sure to trip this
field to 1...whenever the user logs in.

Brad Tumy

-Original Message-
From: Kevin Gilchrist [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 04, 2001 10:28 AM
To: CF-Talk
Subject: Concurrent users and client certificates


Hi all,

I need to meet a business requirement where the same user cannot be logged
in concurrently, i.e. if I log in a kgilchrist from one machine, I can't log
in again from another machine until at least the first session ends.

At the moment users are given a client certificate which I authenticate
against a database and I then set a few session variables to mark them as
authenticated etc.  The session vars are disassociated when the browser
closes loses the temp cookie.

As part of the authentication process, do I need to somehow search through
all the other sets of session variables?  How would I do that?

From reading some of the threads on the list it seems that using session
variables isn't necessarily a good thing either.  Need to do some
reading

Thanks,
Kevin

Kevin Gilchrist
Senior Consultant
RedSiren Technologies Inc.
(412) 281 4427 ext 466
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Concurrent users and client certificates

2001-04-04 Thread Tumy, Brad

yeah I think your right...sorry didn't think through fully before I
responded.

-Original Message-
From: Kevin Gilchrist [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 04, 2001 10:42 AM
To: CF-Talk
Subject: RE: Concurrent users and client certificates


Thanks for your answer Brad!
I thought of this but what would happen if the browser crashed or was
closed?
The Boolean field would need to reset to zero to allow the user log back in
again but I can't trigger that kind of query without a client request or by
scheduled process right?

-Original Message-
From: Tumy, Brad [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 04, 2001 10:27 AM
To: CF-Talk
Subject: RE: Concurrent users and client certificates


Kevin,

add a boolean field to your user table called "loggedin" ...when you query
the table to authenticate check the value of this field...if 0...user can
log in...otherwise "sorry you are already logged in"...be sure to trip this
field to 1...whenever the user logs in.

Brad Tumy

-Original Message-
From: Kevin Gilchrist [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 04, 2001 10:28 AM
To: CF-Talk
Subject: Concurrent users and client certificates


Hi all,

I need to meet a business requirement where the same user cannot be logged
in concurrently, i.e. if I log in a kgilchrist from one machine, I can't log
in again from another machine until at least the first session ends.

At the moment users are given a client certificate which I authenticate
against a database and I then set a few session variables to mark them as
authenticated etc.  The session vars are disassociated when the browser
closes loses the temp cookie.

As part of the authentication process, do I need to somehow search through
all the other sets of session variables?  How would I do that?

From reading some of the threads on the list it seems that using session
variables isn't necessarily a good thing either.  Need to do some
reading

Thanks,
Kevin

Kevin Gilchrist
Senior Consultant
RedSiren Technologies Inc.
(412) 281 4427 ext 466
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: compare files??

2001-04-04 Thread Tumy, Brad

Russ,

do you have any leads to documentation for implenting Source Safe with CF?

-Original Message-
From: Russ Conway [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 04, 2001 10:49 AM
To: CF-Talk
Subject: RE: compare files??


Visual Source Safe can be used to compare files and show the differences. It
integrates pretty well with CF. IMHO, it's a good idea to use some version
control system anyway.

Russell Conway
HallofSports.com, Inc.
351 West 22nd Street
New York, NY 10011
P (646) 638-2500
F (646) 638-3444
http://www.hallofsports.com
... . . where the legends live on

 -Original Message-
 From: Akbar Pasha [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, April 04, 2001 10:45 AM
 To: CF-Talk
 Subject: compare files??


 hi,

 i was just wondering whether CF studio has any facility to compare 2
 ..cfm files and list out the differences. coz i need it very much in my
 work and if its not there, is there any other way i can do the compare?

 TIA

 akbar



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: using cfhttp for ASP?

2001-04-04 Thread Tumy, Brad

Frames.

-Original Message-
From: SHEETS, DAYV (PB) [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 04, 2001 12:39 PM
To: CF-Talk
Subject: RE: using cfhttp for ASP?


What I'd like to be able to accomplish is to incorporate my ASP scripts into
my Cold fusion pages. Is this possible without using a third party program
(or if I need one if any of you have some you have used and could
recommend)? If this can be done with the existing CF technology, do you have
a sample you could provide me with? 

Thanks again for your help! This is a great forum!! :)

Dayv



-Original Message-
From: Dick Applebaum [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 04, 2001 9:09 AM
To: CF-Talk
Subject: Re: using cfhttp for ASP?


If you mean to use an asp template as the target URL of cfhttp, the 
answer is yes.  cfhttp simulates a browser request to the asp 
template and receives whatever target page is served as a result of 
the processing of the asp template.

If you mean "can an asp template perform the equivalent of cfhttp" 
the answer is yes... but requires a 3rd-party program. (There are 
several and I can't recall the the name of any at the moment)

HTH

Dick

At 8:30 AM -0700 4/4/01, SHEETS, DAYV (PB) wrote:
Can anyone tell me if it is possible to perform a cfhttp with ASP
as the template? If it is possible please also provide an example of how
this is accomplished.

Thanks,

Dayv

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: verity and pdf's

2001-04-03 Thread Tumy, Brad

Jason,

I believe Index server would take care of this for you.

Brad

-Original Message-
From: Jason Egan [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, April 03, 2001 2:54 PM
To: CF-Talk
Subject: verity and pdf's


In a PDF document (office documents as well) you can set document
information - description, author, keywords, title, etc... Using verity I
can pull the TITLE just fine, but I can't seem to access the KEY WORDS
section... I would think that if the title is available to verity then the
keywords would be as well.  Anyone know for sure?  I only have one value (a
UPC number)... and I can't pull it up at all.


Thank you,

Jason Egan
...::[CFDynamics]::.
801-621-8511
www.cfdynamics.com

** You've got to check this out! **
CFDCalendar http://demo.cfdynamics.com/cfdcalendar/
Online personal assistant
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Uploading a Zip file with cfhttp

2001-04-03 Thread Tumy, Brad

Can you write a script that performs the action you want...and then schedule
it to occur every night? NT Scheduler...or cron...

-Original Message-
From: Nathan [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, April 03, 2001 3:09 PM
To: CF-Talk
Subject: Uploading a Zip file with cfhttp


Hello all,

I have hit was has proved to be an annoying little hurtle.  I have a
..zip
file which is normally manually uploaded to another server via a form.
But, they now want this to happen automatically every night so I switched
the process to use cfhttp.  However, the pesky little thing is not
accepting the file because "The requested file is not ASCII text and can not
be rendered."

Anyone have any suggestions as to how I can get this file to
automatically
work like the standard form feature?

Regards,

Nathan Focht
FlyFire
[EMAIL PROTECTED]



Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: date range search

2001-04-03 Thread Tumy, Brad

shot in the dark...is it the single paranthesis around the date variable?

Brad

-Original Message-
From: Robert Orlini [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, April 03, 2001 4:30 PM
To: CF-Talk
Subject: date range search


I'm working on a search form which can search between a range of dates. I'm
using the code below and searching a orderdate column with the dates
converted to 00/00/00 format and specified as Date/Time in Access.

When I run the search (which uses a drop-down menu) I get a "data type
mismatch in criteria expression" error.

I beleive it may be with the dateformat function. Any suggestions please?

Thanks in advance. :)

---

CFSET startdate = "#Createdate(Year,Month,Day)#"
CFSET enddate = "#Createdate(Year2,Month2,Day2)#"
cfset startdate = #dateformat(startdate,'mm/dd/yy')#
cfset enddate = #dateformat(enddate,'mm/dd/yy')#

CFQUERY name="getwweb" datasource="wwebsales"
SELECT * FROM wwebsales
where orderdate between '#startdate#' and '#enddate#'
/cfquery
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: date range search

2001-04-03 Thread Tumy, Brad

doh...that's what I meant...quote not parenthesis

-Original Message-
From: Kevin Schmidt [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, April 03, 2001 5:15 PM
To: CF-Talk
Subject: Re: date range search


Lose the single quotes around your date variables in your SQL.
- Original Message -
From: "Tumy, Brad" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Tuesday, April 03, 2001 2:43 PM
Subject: RE: date range search


 shot in the dark...is it the single paranthesis around the date variable?

 Brad

 -Original Message-
 From: Robert Orlini [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, April 03, 2001 4:30 PM
 To: CF-Talk
 Subject: date range search


 I'm working on a search form which can search between a range of dates.
I'm
 using the code below and searching a orderdate column with the dates
 converted to 00/00/00 format and specified as Date/Time in Access.

 When I run the search (which uses a drop-down menu) I get a "data type
 mismatch in criteria expression" error.

 I beleive it may be with the dateformat function. Any suggestions please?

 Thanks in advance. :)

 ---

 CFSET startdate = "#Createdate(Year,Month,Day)#"
 CFSET enddate = "#Createdate(Year2,Month2,Day2)#"
 cfset startdate = #dateformat(startdate,'mm/dd/yy')#
 cfset enddate = #dateformat(enddate,'mm/dd/yy')#

 CFQUERY name="getwweb" datasource="wwebsales"
 SELECT * FROM wwebsales
 where orderdate between '#startdate#' and '#enddate#'
 /cfquery

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: tracking visitors on CF pages?

2001-04-03 Thread Tumy, Brad

this method really adds a lot of database transactions...not to mention more
network traffic. I am sure with some tweaking a tool like Webtrends could
tell you what you are looking for...provided you can access your log files.

-Original Message-
From: Phoeun Pha [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, April 03, 2001 4:40 PM
To: CF-Talk
Subject: RE: tracking visitors on CF pages?


oh!!!, thats an another thing then.  make a table, call it PRODUCT STATS,
have 2 fields, one containing the product ID  for every product u got, and
the next field contains a default number, 0.  each time someone hits that
ID, increment the number up by 1, then u will know how many times that
product was accessed.

b

-Original Message-
From: French, Donna [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, April 03, 2001 3:16 PM
To: CF-Talk
Subject: RE: tracking visitors on CF pages?


my host provides stats and i can tell which cf templates
are getting the traffic, etc. (ie: productdetails.cfm)

but i want to be able to tell down to the actual product
(ie: productdetails.cfm?ID=10)

Thanks,
Donna French 



-Original Message-
From: Phoeun Pha [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, April 03, 2001 2:40 PM
To: CF-Talk
Subject: RE: tracking visitors on CF pages?


blah, I'd just get a host that'll provide that stuff for ya. heh like
www.hostcentric.com
they track by sessions, hits, IP machines, man, anything everything!  they
got charts.
(I'm not promoting hostcentric in anyway, my point is to use other people's
stuff)

otherwise, code all that stuff yourself man


this is how i would approach it.

in your application.cfm, write code that inserts the user's IP or whatever
into the database,a nd also the name of the page.  that's purty easy now
ain't it.

now, all u gotta do is make some page that pulls up that info and show u
what pages get how many hits

-Original Message-
From: French, Donna [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, April 03, 2001 2:29 PM
To: CF-Talk
Subject: tracking visitors on CF pages?


How can I track the stats on a CF/Access driven site
so that I know which products pages, etc. are getting
traffic?

Any help appreciated.

Thanks,

Donna French
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: [Oracle Auto-Increment]

2001-04-02 Thread Tumy, Brad

In the design view of a table you can select the field called "identity"
I believe that this will do the trick...I am new to SQL Server so if
anyone can follow up to correct me or to clarify in more depth.

Brad Tumy

-Original Message-
From: Arden Weiss [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 02, 2001 9:58 AM
To: CF-Talk
Subject: RE: [Oracle Auto-Increment]


What about SQL Server -- how to auto-increment??

 ^
/ \__
   (@\___
  /  O
 /(_/
/_/
Whoof...
410-757-3487

-Original Message-
From:   Alex [SMTP:[EMAIL PROTECTED]]
Sent:   Monday, April 02, 2001 9:45 AM
To: CF-Talk
Subject:Re: [Oracle Auto-Increment]

create a sequence then in your INSERT sql type sequencenqme.next_val.
not sure on specific syntax

Jamie Symonds [EMAIL PROTECTED] wrote:
Hi - I am inserting results of a form into an Oracle 8
database - in the past, while using Access, I would set the
first field of the table ("id") to "auto-number" for my
primary key.  Oracle does not have an auto-increment feature
- how do I go about this?  Thanks.
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CreateUUID()

2001-04-02 Thread Tumy, Brad

by pointing out that the UUID is "predictable" are you saying that using it
for security purposes is not recommended?

Brad Tumy

-Original Message-
From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 02, 2001 9:59 AM
To: CF-Talk
Subject: RE: CreateUUID()


 Does anyone on this list rely on CreateUUID() for creating a completely
 unique identifier? Anyone know how it compares in effectiveness to using
 uniqueidentifier and making it a row GUID in SQL?

As long as you don't pass the UUID to the user and rely on that, then
they're fine - they're also "predictable" as they increment

Philip Arnold
Director
Certified ColdFusion Developer
ASP Multimedia Limited
T: +44 (0)20 8680 1133

"Websites for the real world"

**
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.
**
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: (Announcement) Fusebox: Methodology and Techniques ( ColdFusion®Edition) Hits the 1,000 Copy Mark!

2001-03-30 Thread Tumy, Brad

it cost $30k to write and publish this book?

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 30, 2001 1:11 PM
To: CF-Talk
Subject: Re: (Announcement) Fusebox: Methodology and Techniques (
ColdFusion®Edition) Hits the 1,000 Copy Mark!


Actually without going into numbers, we've cleared the initial investment.
I'm saying this so people will see that in 4 months without any major
publicity or tours we've been able to have an ROI. So when the next book or
5 comes out and we're looking for investors, they'll know they will get
their ROI within 4-6 months. Not bad for a 'small press'. :)


 congratulations!

 gee I hope you guys made some money out of this

 T-


 At 03:00 AM 3/30/2001 , you wrote:
 Fusebox: Methodology and Techniques (ColdFusion® Edition) Hits the 1,000
 Copy Mark!



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: insert

2001-03-30 Thread Tumy, Brad

You could write a stored procedure...you would call the stored procedure
once from your CF script (passing in the data) ...in your stored procedure
you could do as many inserts|updates|selects|deletes as you want.

-Original Message-
From: Garza, Jeff [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 30, 2001 1:24 PM
To: CF-Talk
Subject: RE: insert


I do believe that you'll need to use two separate CFQUERY statements.

Jeff Garza
Web Developer/Webmaster
Spectrum Astro, Inc.
480.892.8200

[EMAIL PROTECTED]
http://www.spectrumastro.com



-Original Message-
From: Jones, Becky [mailto:[EMAIL PROTECTED]] 
Sent: Friday, March 30, 2001 10:56 AM
To: CF-Talk
Subject: insert


is it possible to insert data into a database from a form field that would
insert the same data into 2 separate tables in the database?  
can i do this with one insert statement?


*
This e-mail, including any attachments, is intended for the 
receipt and use by the intended addressee(s), and may contain 
confidential and privileged information.  If you are not an intended 
recipient of this e-mail, you are hereby notified that any unauthorized 
use or distribution of this e-mail is strictly prohibited.
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists