PDA

View Full Version : content mgt tool using .asp


bbarnes
10-19-2007, 04:23 PM
I'm looking to purshase a CMS tool (www.contensive.com) to manage my site. The CMS uses .asp as well as a page template based structure. Here are some examples of what pages will end up looing like:
1. Home - index.asp?
2. Solutions - tier.asp?sid=5
3. Solutions/ProductX - tier.asp?bid=51 (this builds of of the solutions tier/parent page.

The tool does allow me to manage meta data (titles, description, keywords) for every page I create via the backend admin tool. I would make sure that the meta data match the copy on the page of course.

Should I be concerned here or am I ok?

Jazajay
10-23-2007, 10:54 PM
Hi Google can index upto around 4 parameters in urls before it has an issue, as in-

example.com/page.php?par1=1&par2=2&par3=3&par4=4

It can index more but to be on a safe side you should have below 4 paremeters in your url structure. Preferablly none.

Also paremeters can provide that extra information to hackers and I always rewrite all my urls for this reason.

As in
example.com/page.php?type=cat&name=flully

I can make a logical guess that you have 2 DB rows 1 named type and one named name, this might not be the case but it's a fair assumption.

Where as-
example.com/fluffly

tells me very little.
If a hacker can hack your db SEO is pointless something to keep in mind.

bbarnes
10-24-2007, 10:15 AM
thanks brotha!