2017年2月22日 星期三

angualr2 網站建置流程

step1:
下載 node js


step2:

執行 npm指令,安裝angular 2套件 -> npm install -g @angular/cli


step3:
到網站根目錄下載angular module,執行 npm指令 -> npm install
下載完成後會出現node_modules的資料夾




Step4:
.angular-cli.json 確認網站發佈路徑
屬性outDir 編輯發佈路徑,可輸入絕對路徑或相對路徑





Step5:

到網站根目錄,執行 npm指令,發佈網站 -> ng build

標籤:

2017年2月14日 星期二

ms-sql client connection test

cmd

telnet servername 1433

標籤:

2017年2月8日 星期三

web api 跨網站 post model

:System.Web.HttpApplication
繼承下加入 下列function


protected void Application_BeginRequest(Object sender, EventArgs e)
        {
            //HttpContext.Current.Response.AddHeader("Access-Control-Allow-Origin", "*");
            if (HttpContext.Current.Request.HttpMethod == "OPTIONS")
            {
                HttpContext.Current.Response.AddHeader("Cache-Control", "no-cache");
                HttpContext.Current.Response.AddHeader("Access-Control-Allow-Methods", "GET, POST");
                HttpContext.Current.Response.AddHeader("Access-Control-Allow-Headers", "Content-Type, Accept");
                HttpContext.Current.Response.AddHeader("Access-Control-Max-Age", "1728000");
                HttpContext.Current.Response.End();
            }
        }

標籤: ,