- For individual users
- Instant access to solutions
- Ask your tech questions
- Start your 30-day Free Trial
Main Topics
Browse All TopicsWe currently have two IIS webservers -- web and webapp. All of our static HTML files live on web and all of our old ASPs and newer ASPX files live on webapp.
An outside consultant is redesigning our website look and feel and has given us all new HTML pages, CSS files, etc. which are all going to live on web. We're in charge of modifying all the ASPs and ASPX files in house to get them to match the new look and feel.
For testing, we had just copied the template files over onto webapp and were using Response.WriteFile("/ssi/h
However, we really don't want to have duplicate ssi folders on both web and webapp to maintain-- we'd like to keep all the header/footer files on just web -- problem being, if we do something like this: Response.WriteFile("http:/
Is there a cleaner way to include our header and footer files across web servers?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: tedbillyPosted on 2008-11-23 at 14:52:15ID: 23026184
You can setup website paths using UNC folders. It's a little tricky to setup. What I do is create a Share on the server holding the files. I then designate a domain account that only has read or write access to that folder.
I then setup the virtual folder (or site) using the UNC path on the other host server and use the 'Connect As' feature to access the remote share.
There are other ways by changing the identity of the application pools but that's not as simple.
If you are simply doing reads to include the files it's a simply safe way to do it.