Re: search engine and cfm files

2000-08-20 Thread avex
Using this custom tag I still couldn't resolve the ID maybe because I am not using the fusebox framework. I am new to fusebox, and am not sure if I am using the custom tag correctly. Would someone mind giving me some tips on getting this tag working correctly.. Or

Re: search engine and cfm files

2000-08-20 Thread Jared Clinton
Avex, At www.fusebox.org you can download the code for the site, it should have what you are looking for. Jared. avex wrote: Using this custom tag I still couldn't resolve the ID maybe because I am not using the fusebox framework. I am new to fusebox, and am not sure if I am

Re: search engine and cfm files

2000-08-17 Thread avex
Using this custom tag I still couldn't resolve the ID maybe because I am not using the fusebox framework. someone suggested using a ListGetAt function does anyone have the code handy? any help would be appreciatedi feel i am so close... thanks avex I think its part of the

RE: search engine and cfm files

2000-08-15 Thread Matthew Walker
so all my pages are like page.cfm?ID=X where X is the database record. get this: page.cfm/ID/X You can reference you pages like that too. Everything will take care of itself. Cool huh!! One thing, you might need to include a base tag or make your img etc. links absolute (start with /).

Re: search engine and cfm files

2000-08-15 Thread Andrew
ause search engines to follow every link and catalogue each unique ID as a different page. Hope that helps. Andrew Hewitt Web Application Developer webworld studios inc. - Original Message - From: "avex" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, August 14, 2000 10:39 PM

RE: search engine and cfm files

2000-08-15 Thread Matthew Walker
"page.cfm/X/". The code for page.cfm would use a listGetAt function with the list being cgi.path_info and the delimiter being "/" to get the ID Sure, but you don't actually need to. It works automatically. --

Re: search engine and cfm files

2000-08-15 Thread Andrew
AM Subject: RE: search engine and cfm files "page.cfm/X/". The code for page.cfm would use a listGetAt function with the list being cgi.path_info and the delimiter being "/" to get the ID Sure, but you don't actually n

Re: search engine and cfm files

2000-08-15 Thread avex
so all my pages are like page.cfm?ID=X where X is the database record. get this: page.cfm/ID/X thanks for the reply.but how does this work? how does the search engine know that there is page.cfm/ID/777 to pick it up? also.when i tried this i got an error because it couldn't

Re: search engine and cfm files

2000-08-15 Thread Jared Clinton
I think its part of the fusebox methodology coupled with a specific web server setting. I'm sure other people can offer more help, but its a start. Jared. avex wrote: so all my pages are like page.cfm?ID=X where X is the database record. get this: page.cfm/ID/X thanks for the

RE: search engine and cfm files

2000-08-15 Thread Matthew Walker
I think its part of the fusebox methodology coupled with a specific web server setting. I'm sure other people can offer more help, but its a start. Jared. Oops. Sorry. You're right. I didn't realise it was a Fusebox tag doing the trick. Andrew's answer should do it for you. For reference,

Re: search engine and cfm files

2000-08-15 Thread avex
thanks for this but will this tag effect any of my other variables? ie...will everything still work the same if i use this tag? i can't wait to check this out has anyone registered a site on a search engine using this method? I would love to see what the results look like. thanks

Re: search engine and cfm files

2000-08-15 Thread Andrew
pplication Developer webworld studios, inc. - Original Message - From: "avex" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, August 15, 2000 9:49 PM Subject: Re: search engine and cfm files so all my pages are like page.cfm?ID=X where X is the database record. ge

RE: search engine and cfm files

2000-08-15 Thread Matthew Walker
thanks for this but will this tag effect any of my other variables? ie...will everything still work the same if i use this tag? The Fusebox tag won't affect other variables. All it does is take anything in the Form or URL scope and *copy* it into the Attributes scope. The concept is that

search engine and cfm files

2000-08-14 Thread avex
Hi, I am doing a job for a client that involves converting 500 html documents into a cold fusion dynamic site. At the moment the pages are derived from a database and formatted in one template file so all my pages are like page.cfm?ID=X where X is the database record. My question is, how