Netscape Image problem

2000-05-15 Thread Pecora, James
Hello All, I am getting a wierd response from NN 4.08 (and others) regarding the resolution of an image. the code: img width=100% height=33 border=0 src=..\images\imgYellow.gif Will mostly resolve and show the image, sometimes though, it does not, and it show a broken image (It NEVER

RE: Cf express and sessions

2000-04-28 Thread Pecora, James
No it does not - you will have to maintain session via the URL HTH -Original Message- From: Mark W. Breneman [mailto:[EMAIL PROTECTED]] Sent: Friday, April 28, 2000 12:12 PM To: [EMAIL PROTECTED] Subject: RE: Cf express and sessions Anyone... Please -Original Message-

IIS scripting objects in CF

2000-04-19 Thread Pecora, James
Hello all... I'm trying to draw some parallels between CF and ASP for a client... The use of the native IIS scripting objects has come up... I am trying to understand if it is possible and in what syntax - to use these objects.. EXAMPLE: the object scripting.dictionary (is actually a single

RE: WAY OT: backdoor affecting IIS and FP 98 extensions

2000-04-14 Thread Pecora, James
Please pass along this security write up- thanks for all your work Michael... james -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] Sent: Friday, April 14, 2000 11:04 AM To: [EMAIL PROTECTED] Subject: Re: WAY OT: backdoor affecting IIS and FP 98 extensions If

RE: Fusebox or not Fusebox that is the question...

2000-04-13 Thread Pecora, James
Bill - you are correct - FUSEBOX is just a methodology, any standarized methodology throughout a team environment will do the same thing. As for compartmentalizing the code for ease of debugging in the team..that can be part of your standard and not necessarily fe fusebox. Personally I use a

RE: Fusebox or not Fusebox that is the question...

2000-04-13 Thread Pecora, James
- From: "Pecora, James" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, April 13, 2000 9:19 AM Subject: RE: Fusebox or not Fusebox that is the question... Bill - you are correct - FUSEBOX is just a methodology, any standarized methodology throughout a team environment will d

HTTP 1.1 Host Header files

2000-04-12 Thread Pecora, James
Does anyone know if Apache web server supports host header files for putting multiple sites on one IP address... I know you can do this in IIS, but I'm looking for alternitives... thanks -- Archives:

RE: nesting queries??

2000-04-07 Thread Pecora, James
Why do you have to nest them??? If you are looking to loop over the results do this... cfloop query="query1" cfoutput#query1_info#/cfoutput cfloop query="query2" ---cfoutput#query2_info#/cfoutput cfloop query="query3" --cfoutput#query3_info#/cfoutput /cfloop /cfloop

RE: Programatically setting search path for custom tags

2000-04-06 Thread Pecora, James
OK - (seriously) can I get a show of hands (via email) of thos developers who think the ability to specify the path to a custom tag would be a good feature - specifically NOT using cf module...and here's why. I like the ability to call a custom tag inside a site, while having that sites/apps

RE: Combining Cf and ASP in the same Template

2000-04-06 Thread Pecora, James
Steve - I believe your wrong on this issue asn only ONE application server mapping can be made to a file extension - you CAN NOT make a mapping that follows a path... When you set up CF or ASP you create amapping on the webserver that points to a .dll so the resolution process looks like this:

Show Of Hande

2000-04-06 Thread Pecora, James
OK - (seriously) can I get a show of hands (via email) of those developers who think the ability to specify the path to a custom tag would be a good feature - specifically NOT using cf module...and here's why. I like the ability to call a custom tag inside a site, while having that sites/apps

Office 2000 Web Components

2000-04-06 Thread Pecora, James
Has anyone used Office 2000 Web Components for charting data (as a solution to Crystal Report porblems)?? If so...have you been able to pass parameters to the data, via the web??? So as to dynamically change/populate the chart??? If so - How??? Thanks in advance James

Special character question:

2000-04-06 Thread Pecora, James
What is this?? #9; -- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a message to [EMAIL PROTECTED] with 'unsubscribe'

RE: Cached Query's?

2000-04-06 Thread Pecora, James
As long as it's the same syntax and you don't have it scoped to a session var.. It gets hit ONCE..then cached... -Original Message- From: Bill Killillay [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 06, 2000 1:26 PM To: Cf-Talk Subject: Cached Query's? If I cache a query, does that

CF Table Question..

2000-03-30 Thread Pecora, James
Hey - I fooling around with CFTABLE (for modeling purposes only - no slaming please) I want to loop over a cfcol to populate the table - Something like this: cftable query="GetTable" colheaders htmltable border cfloop list="#GetTable.ColumnList#" index="i"

OT: Form Action Question - JS

2000-03-29 Thread Pecora, James
Is it possible to have the form action driven by a form element? I have a select box that is listing some pages, when the user select a page and fills out the rest of the form, I want the form submited to the page selected in the select box... I realize I can do this by using this form param on

RE: OT: Form Action Question - JS (MORE)

2000-03-29 Thread Pecora, James
Thanks Larry - Can you give me some guidance on syntax placement... What I have... form action="" method="get" name="Selecttest" onsubmit="return verify(document.Selecttest);" pReport: select name="ReportFile" option value="test1.rpt"test1 option

RE: [Help !!!! with session time outs]

2000-03-27 Thread Pecora, James
Raymond - can you give some brief examples of using cflock?? where you did and did not use it in your code... actual snippits would be helpful, people are saying any time you use a session or application variable, but that doesn't give much information. tia

Ordering a list

2000-03-27 Thread Pecora, James
Any way to order a list easily??? Say I have a LIST and I want it alphabetized? I am looping thry the list and would like to have some contro over the display order... thanks -- Archives: