views:

61

answers:

1

please refer to the follow up also thanku http://stackoverflow.com/questions/3262640/foloow-up-question-and-what-does-this-mean-mail-yahoo-com

this is what i want to make a sample of alt text

have made a sample page, which has a logo page.

asking user to state its department according to which the page will show the department logo.

i want to separate the website access by copying the webpage on different computers and hosting such that each computer represent a department. (the webpage shows the text "welcome to department" which i have edited by department name for each department computer)

when user says.

  • www.select_your_department.com computer1 is used as IIS server
  • user says my department is alpha
  • computer1 one does response.redirect to showmydepartment.aspx which has a page saying "welcome to alpha" (that is this page is coming from the cpu dedicated for department alpha)

but how to achieve this in practical?

even if i copy the page on all the departments computer and edit it deparment name

the page still has the same name "showmydepartment" !! how to ask browser to fetch the page from particular hosting server?

i think its involves something like department.showmydepartment, some domain names somthing

help please

A: 

If I understand correctly this sounds like a really bad idea. A better solution would be to developer the application based on a single computer and implement clustering if the load is too great for a single machine.

The posters idea of spreading the website across several machines has little chance of handling load situations and will be a development and maintenance nightmare.

Derek Clarkson
ok but if i want to know how its done? do you have any guides
please see the image edit
Ok, but the way you describe what you want to do suggests that you want different on different machines. Generally speaking you don't want to do this unless you have a really massive system. In which case you would have a really big dev team too. You only need to uses clusters when the load you are expecting will exceed the capacity of a single machine. IN that case the cluster software will handle distributing the application and user sessions across the nodes in the cluster. I'd suggest http://tomcat.apache.org/tomcat-6.0-doc/cluster-howto.html as a good start.
Derek Clarkson