發表文章

目前顯示的是 2015的文章

PMP常用的英文單字

有時候開Table、為欄位名稱命名時,常會想半天 網路上找到PMP常用的英文,應該可以派上用場 來源: http://blog.roodo.com/pmp_5472/archives/6049425.html A 英文 縮寫 中文 Actual Cost AC 實際成本 Actual Cost of Work Performed ACWP 完成工作的實際成本 Actual Cost of Work Scheduled ACWS 排定工作的實際成本 Activity Description AD 活動說明書 Arrow Diagramming Method ADM 箭頭圖示法 Actual Finish date AF 實際完成日 Activity-on-Arrow AOA 箭頭圖示活動法 Activity-on-Node AON 節點圖示活動法 Actual Start date AS 實際開始日 B 英文 縮寫 中文 Budget at Completion BAC 完工之預算 Budgeted Cost of Work Performed BCWP 已執行工作的預定成本 Budgeted Cost of Work Scheduled BCWS 已排定工作的預定成本 Bill of Material BOM 材料清單 C 英文 縮寫 中文 Control Account CA 控制賬目 Control Account Plan (previously called Cost Account Plan) CAP 控制會計計畫書 Change Control Board CCB 變更控制委員會 Cost of Quality COQ 品質成本 Cost-Plus-Fee CPF 成本加酬金 Cost-Plus-Fixed-Fee CPFF 成本加固定報酬合約 Cost Performance Index CPI 成本績效指數 Cost-Plus-Incentive-Fee CPIF 成本加獎金報酬合約 Critical Path Method CPM 要徑法 Cost-P

ASP.NET 判斷來源頁面的幾個方法

有時候要依照來源頁面做處理,例如轉址, 有以下幾個方法 方法一: dim strRef as string = Request.ServerVariables("HTTP_REFERER") select case strRef case "http://www.123.net" Response.Redirect "/~abc/Index.asp" case "http://www.789.net" Response.Redirect "/~cde/Index.asp" case else Response.Write "你是偷渡客吼!" end select 方法二: dim a as string =string.empty If Not Request.UrlReferrer Is Nothing Then a=System.IO.Path.GetFileName(Request.UrlReferrer.AbsolutePath) select case a case "1.aspx"" case "2.aspx" ..... end select end if