2018年6月30日 星期六

Free SSL Certificate Validation 設定手冊

Free SSL Certificate Validation 設定手冊
備註:jason亂碼設定MIME可參考 https://poychang.github.io/web-config-mime/
  • 解壓縮後可以取得一個私密金鑰(Privacy Key)、CA_bundle.crt 和 certificate.crt 三個檔案。
  •  產生的憑證是 .crt 非 .pfx,IIS 憑台只能使用 .pfx 憑證檔,所以這時候就需要透過工具做轉換,我們到 OpenSSL for Windows 去下載 OpenSSL 回來,並把他安裝完成。
C:\OpenSSL-Win32\bin\openssl pkcs12 -export -out D:\Downloads\sslforfree\certificate.pfx -inkey D:\Downloads\sslforfree\private.key -in D:\Downloads\sslforfree\certificate.crt -certfile D:\Downloads\sslforfree\ca_bundle.crt


  • 站台新增繫結,請先點選你的站台,在右邊動作點選「繫結」,於站台繫結點選「新增」
  • 站台所有連結的外部網址路徑都要為https

IIS – 500 – 內部伺服器錯誤。 您要尋找的資源有問題而無法顯示。

IIS – 500 – 內部伺服器錯誤。 您要尋找的資源有問題而無法顯示。


https://hsunya.wordpress.com/2015/08/12/iis-500-%E5%85%A7%E9%83%A8%E4%BC%BA%E6%9C%8D%E5%99%A8%E9%8C%AF%E8%AA%A4%E3%80%82-%E6%82%A8%E8%A6%81%E5%B0%8B%E6%89%BE%E7%9A%84%E8%B3%87%E6%BA%90%E6%9C%89%E5%95%8F%E9%A1%8C%E8%80%8C%E7%84%A1/

2018年6月28日 星期四

在IIS中并没有设置这个MIME类型

在IIS中并没有设置这个MIME类型

https://shiyousan.com/post/635425285325763892


如果iis的mime類型沒有要加..如果有加會造成錯誤

2018年6月27日 星期三

免費MP4影片合併與分割軟體MP4Tools

http://blog.xuite.net/yh96301/blog/379178504

重訪委派

https://ithelp.ithome.com.tw/articles/10205614?sc=iThelpR

委派的聲明

除了 Delegate 也可以使用 Action, Func, Predicate 這些類型來進行委派,不用事先宣告委派的類型。

Action

Action是無傳回值的泛型委派。
Action至少0個參數,至多16個參數

Func

Func 是有傳回值的泛型委派。
Func 至少0個參數,至多16個參數,以及一個傳回值的型別參數。方法必須有傳回值,不可為 void。
Func<int> 無輸入的參數,且傳回值為 int 型別的委派。
Func<object,string,int> 表示傳入參數為 object , string 傳回值為 int 型別的委派。

Predicate

Predicate 是返回 bool 型的泛型委派。
Predicate<int> 表示傳入參數為 int 返回 bool 的委派。
Predicate 有且只有一個參數,傳回值固定為 bool。


========================================


C# 筆記:重訪委派-從 C# 1.0 到 2.0 到 3.0
https://www.huanlintalk.com/2009/01/delegate-revisited-csharp-1-to-2-to-3.html


[C#] delegate 到 Lambda Expressions 語法演進


https://jax-work-archive.blogspot.com/2014/02/c-sharp-delegate-to-lambda-expressions-syntax-transform.html

2018年6月23日 星期六

Qualitytime手機使用狀況監控App-追蹤每個應用程式的使用時間,戒掉手機上癮症(Android)。

Qualitytime手機使用狀況監控App-追蹤每個應用程式的使用時間,戒掉手機上癮症(Android)。


https://www.pkstep.com/archives/35231

https://ikeymonitor.tw/

? c#問號使用說明

C# 宣告變數時,型別帶"?"(問號),表示變數可接受null值


https://dotblogs.com.tw/charleen/2017/12/26/100359


https://blog.miniasp.com/post/2007/10/28/New-operator-found-in-CSharp-question-mark.aspx

2018年6月13日 星期三

Angular 開發實戰:從零開始

影片
https://www.udemy.com/angular-zero/learn/v4/overview

練習
https://stackblitz.com


Will 保哥 部落格 https://blog.miniasp.com/ 粉絲團 https://www.facebook.com/will.fans/ YouTube https://www.youtube.com/user/doggy8088

2018年6月12日 星期二

[C#][筆記] default 關鍵字針對不同型別的回傳值整理

http://xingulin.tumblr.com/post/48046560756/default-keyword

線上課程

https://www.udemy.com/angular-zero/?couponCode=ANGULAR.IO

https://www.udemy.com/linq-csharp/

https://hiskio.com/courses/172?promo_code=6RZDPLG

寶哥
https://www.udemy.com/home/my-courses/learning/

ASP.NET線上課程
https://www.tibame.com/courseplayer/418

2018年6月8日 星期五

陣列宣告方式

出處:http://m955.com/wp/archives/165

            //第1種宣告方式
            string[] arr1 = new string[5];
 
            //第2種宣告方式,不指定陣列大小
            string[] arr2 = new string[]
                            {"王家豪", "鄭惠婷", "蔡昱友", "蔡雅芳", "林嬌岳"};
           
            //第3種宣告方式,直接指定初值,比較方便
            string[] arr3 = { "陳苑星", "陳宏行", "陳麗娟", "趙智和", "白嘉鳳" };
           
            //多維陣列
            string[,] arr4 = { { "王", "趙", "白" }, { "陳", "蔡", "郭" } };
           
            //讀出arr3
            for (int i = 0; i <5; i++)
            {
                Console.Write(arr3[i] + "\n");
            }
           
            //讀出arr4
            for (int j = 0; j <2; j++)
            {
                for (int n = 0; n <3; n++)
                    Console.Write(arr4[j, n] + "\n");
            }
            Console.ReadLine();

2018年6月4日 星期一

特定網站無法連線,而其他人則可正常瀏覽

特定網站無法連線,而其他人則可正常瀏覽


http://jenyu316.pixnet.net/blog/post/187706721

某特定網站無法連上(Browser顯示正在等後...),其餘網站都可以正常連網

https://ithelp.ithome.com.tw/questions/10183382?sc=pt

如何使用 TRACERT 疑難排解 Windows 中的 TCP/IP 問題

https://support.microsoft.com/zh-tw/help/314868/how-to-use-tracert-to-troubleshoot-tcp-ip-problems-in-windows



2018年6月3日 星期日

訊連科技的「威力導演 15」又推出限時免費下載活動

https://sharewareonsale.com/checkout/order-received/11295647?key=wc_order_5b13efa59d37a

https://www.techbang.com/posts/58750-free-crack-power-director-15-free-download

2018年6月2日 星期六

反映( Reflection )基礎反映了解

基礎反映了解

https://blog.kkbruce.net/2011/09/visual-basic-reflection-2.html#.WxJhGUiFNPY

https://blog.kkbruce.net/p/blog-page_20.html#reflection

https://blog.kkbruce.net/2017/01/reflection-method-invoke-7-ways.html#.WxJg5EiFNPY

C#中的Reflection反射(反映)用法

http://slashlook.com/articles_20140423.html