how do you guys accomplish this

D

Danny

I am tyring to find the site, but I am seeing more and more web sites with
the really long html names and also nicely broken down by category that sits
on a related directory and/or subdomain on the server.

so like:
a white kenmore gasrange would be:
http://forthekitchen.someappliances...nges/white/4564-kenmore-best-white-fridge.asp

and the model number and title combined into one page name.
are these page names generated before hand? wow!!

How is this done?
I assume for starters it is on a windows system with asp obiously, but how
to accomplish.
 
A

Aaron Bertrand - MVP

In addition to using a 404 page and parse the URL to determine what product
to display dynamically, the pages COULD be created beforehand to generate
static content (much less taxing on a system). Whenever the admin interface
makes a change to a particular product, it updates the "static" page --
which only needs to be static between updates.

I use this technique for my RSS XML feed, and also toyed with generating
static .HTM files (one for each article).
 
B

Bob Barrows [MVP]

Danny said:
I am tyring to find the site, but I am seeing more and more web sites
with
the really long html names and also nicely broken down by category
that sits
on a related directory and/or subdomain on the server.

so like:
a white kenmore gasrange would be:
http://forthekitchen.someappliances...nges/white/4564-kenmore-best-white-fridge.asp

and the model number and title combined into one page name.
are these page names generated before hand? wow!!

How is this done?
I assume for starters it is on a windows system with asp obiously,
but how
to accomplish.

I do not think these names are being generated on the fly. I think the
designers actually created a separate asp page for each of their products,
using the naming convention to identify them.

I suppose the possibility exists that they generated the names of pages that
do not exist and used a custom 404 page to parse the names to cause the
resulting page to display the product described, but I doubt it.

Bob Barrows
 
A

Aaron Bertrand - MVP

I do not think these names are being generated on the fly. I think the
designers actually created a separate asp page for each of their products,
using the naming convention to identify them.

I think it's plausible that it was a combination of manual/on the fly.
Consider a normalized schema where each unique product has exactly one row
in a view, it would be trivial to write a "page generator" that created a
page (folder/page name based on specific properties) with the page content
from the view; one page per product.

An admin page could be constructed to either (a) rebuild the entire set of
pages, or (b) take a specific product ID and rebuild just that one.
Sometime I should show you the ASPFAQ admin interface; one of the tasks the
final save page has when updating/adding an article is that the RSS XML file
is rebuilt (rather than have that page generated on the fly when it is
requested, it is static until it needs to change). At one point it also
built a static HTML file for just that article, but I ditched that feature.

This wouldn't necessarily have to be done by ASP either, but this is useful
if you want to handle the updates on demand along with the other updates.
If you want to schedule it (e.g. build all the pages once a day,
incorporating the day's changes), you could use something else (e.g. C#).
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,744
Messages
2,569,483
Members
44,901
Latest member
Noble71S45

Latest Threads

Top