If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > ASP > Intranet Project - HELP !!

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 07-01-03, 11:57
donaldt donaldt is offline
Registered User
 
Join Date: Jan 2002
Location: Nottingham - UK
Posts: 113
Smile Intranet Project - HELP !!

I am in the process of building a new intranet for my firm - our company is made of of seven departments, each department is to have there own content management system.

The question......

When each department clicks on home how can I ensure that they return to there own department CMS ?

I had thought about assigning an IP address range to each department and then each respective CMS would redirect to the appropiate web site on clicking home.

Is that a good idea - or can anyone tell me of a better way ?

Help appreciated !

Donald
Reply With Quote
  #2 (permalink)  
Old 07-01-03, 12:02
JonathanB JonathanB is offline
Registered User
 
Join Date: Feb 2002
Location: North Wales, UK
Posts: 114
Really depends on the web server setup. What your asfter could easily be done using IIS only.
__________________
J^ - web | email
newsASP Developer
Reply With Quote
  #3 (permalink)  
Old 07-01-03, 12:06
donaldt donaldt is offline
Registered User
 
Join Date: Jan 2002
Location: Nottingham - UK
Posts: 113
Intranet

Well am using IIS 5 - would you happen to have any code for IP forwarding ??

Thanks
Reply With Quote
  #4 (permalink)  
Old 07-02-03, 04:24
JonathanB JonathanB is offline
Registered User
 
Join Date: Feb 2002
Location: North Wales, UK
Posts: 114
Is each department using http://domain.com/deptname or http://deptname ?

You can check the users IP using:
PHP Code:
request.servervariables("REMOTE_ADDR"
__________________
J^ - web | email
newsASP Developer
Reply With Quote
  #5 (permalink)  
Old 07-02-03, 12:38
rhs98 rhs98 is offline
Super Moderator
 
Join Date: Feb 2002
Location: Hampshire, UK
Posts: 441
A good idea which does not rely on IP addresses would be to set a session variable to the reffer address when the session starts (i.e. in global.asa).

Just set the link "home" to equal the value of that session variable.
Reply With Quote
  #6 (permalink)  
Old 07-09-03, 18:34
Seppuku Seppuku is offline
Useless...
 
Join Date: Jul 2003
Location: SoCal
Posts: 721
Sessions won't work well if you plan to have a load balanced infrastructure. Assigning IPs could be a maintenance hassle in the future. You could force the "Home" button to a certain URL per department by registry settings, but also a maintenance hassle unless you have a remote desktop configuration tool. If you have an HR system you can tap into, you could try passing the login ID on the computer through to the web server allowing you to automatically authenticate to the HR system and pull their department, then forward them on to their CMS.

Are you building your own CMS, or implementing a third party solution?

Secondly, why would you want the "Home" button on their browser to go to the CMS system. Would it not make more sense to make "Home" go to your new Intranet?
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On