[轉貼] 多個網站併成同一個WebSite專案開發、部署技巧

2013081217:21
出處:http://www.dotblogs.com.tw/shadow/archive/2011/07/01/30764.aspx

在進入正題前,先回顧一般情況下,如果有一個案子,須同時開發二個以上的網站

通常大概這樣做……(以下以WebSite專案當範例)

建立第一個WebSite,架構如下:

Comman.cs是所有WebSite都會用到的共同邏輯

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
 
 
public class Comman
{
    public Comman()
    {
         
    }
 
    public string getBanner()
    {
        return "廣告輪播 by AdRotator控制項";
 
    }
}

images/demo.png是第一個網站自己擁有的圖片資源(相對路徑)

index.aspx