Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Redevelopement of Intranet

Status
Not open for further replies.

spazman

Programmer
May 29, 2001
500
CA
I have the task of redoing our Intranet. I did most of the spec work for it and have done about %60 of the code and %100 of all new apps on it and all the DB work.

The problem is there is a little too much interaction required by me to update the thing. One thing that has me stumped is section menus. I.E. You click on the HR section of the Intranet and they have a menu on the side unique to them, while this is very static in nature I do not want to have to edit the menu file (gets included as an SSI) I was think just pull this from a DB, but that one heck of a lot of hits to my SQL server. I was thinking XML, but since I lack any great knowledge of the technology I wanted to see if this is a case where you would use it.

My thought would be as the menu for each department gets updated it creates an XML file that would be parsed when the page loads.
Is this a practical thing to do with XML, would the DB be faster, or should I just create the HTML and continue with SSi's which I think i would rather get away from.

Your thoughts and opinions are welcome andappreciated.

SpazMan
 
Database or XML: they are mostly equivalent. The performance of one vs. the other should be measured rather than guessed at.

I would think either one is preferable to SSI of HTML because of the added flexibility presentation. However when the site hierarchy changes the menus are effected regardless of where/how the data is stored and therefore the maintenance issue will still exist.


-pete
 
Thats why I was leaning towards XML/DB rather than SSI HTML, thanks for the input, Pete.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top