开发者

ASP.NET Virtual Directory For Common Markup

开发者 https://www.devze.com 2022-12-18 17:20 出处:网络
I have a few applications that need to share a common set of markup. Scenario: I might have www.site1.com, www.site开发者_如何学Go2.com, and www.site3.com.On all sites, /care/contact-us.aspx and /car

I have a few applications that need to share a common set of markup.

Scenario: I might have www.site1.com, www.site开发者_如何学Go2.com, and www.site3.com. On all sites, /care/contact-us.aspx and /care/faqs.aspx will be exactly the same, but every other page will be totally different.

Issue: I'm attempting to not duplicate the .aspx files for each of these sites and would like to have a /care virtual directory that would include contact-us.aspx and faqs.aspx that each of these sites would use. I have seen this post from Scott Gu, but I'm looking for any other solutions/ideas.

Question 1: What would be the best way to set this up to share the /care directory? Question 2: Any ideas about also sharing the code behind.

Background, if you care: In a legacy application (asp classic/vbscript), we have the ability to use a /common virtual directory for sites to share common markup and code (since they're all mixed together in .asp files).

Thanks in advance to any help or ideas!


Simply setup a virtual directory in IIS for each of the apps that points to the same physical directory.

Here's a good reference:

http://support.microsoft.com/kb/324785


This is actually pretty hard, and i'd recommend you either bite the bullet and go with the scott gu answer or use the solution we chose, which was to use the svn:externals property within subversion to import a directory from a "shared" repository. Subversion manual reference. If you use a different version control system i would guess it would have something similar but you're on your own in that case.


I use a virtual directory in order to share HTML and Image files between sites. To share ASPX files, things are a bit different - and harder.

When we share HTML files, we do not just link to that file because it would screw up the menu (different sites have different menus - we just want the content of the HTML files). So I created a page (e.g. "ShowContent.aspx") that opens up the HTML file, reads the contents as a string and assigns the string to an ASP label control. This may work for you as-is if you don't generate the content dynamically in your shared ASPX files.

Even if you do, hope is not lost. First, create a project that incorporates JUST the common ASPX files, build it and place the project files in a known location (http://shared.yoururl.com). Now, instead of pulling the contents by accessing a file, simply read the contents off using a WebRequest object:

        WebRequest wrContent = WebRequest.Create("http://shared.yoururl.com/CommonInformation.aspx");
        Stream objStream = wrContent.GetResponse().GetResponseStream();
        StreamReader objStreamReader = new StreamReader(objStream);
        string pageContent = objStreamReader.ReadToEnd();

Then display the pageContent on your blank page.

If your common pages are data entry forms then I'm afraid your only hope is to place them in a common source directory that multiple projects share. You'd share the source but would publish the files with each project. This is likely to be messy though: you may make changes in one that break other projects because they now have the possibility of interdependency.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号