January
1st,
1970
本篇作為書籤用途,記錄網路上的雜項參考資料
二階段驗證
- GoogleAuthenticator
- 套件簡介: Simple, easy to use server-side two-factor authentication library for .NET that works with Google Authenticator
- 使用說明: Implementing Free Two-Factor Authentication in .NET using Google Authenticator
- 安裝方式: Install-Package GoogleAuthenticator (NuGet)
- 小工具: GAuth
Stackoverflow Exception Handler
// For JavaScript Exception Handler
try {
// do something
} catch (e) {
window.location.href = 'https://stackoverflow.com/search?q=[js] + ' + e.message;
}
// For PHP Exception Handler
try {
// do something
} catch (Exception $e) {
header("location: https://stackoverflow.com/search?q=[php] ".$e->getMessage());
}
快速/簡單轉址的網頁
有時候我們想將某個網頁直接轉到另一個,最簡單的方式就是透過下面這兩行:
<meta http-equiv="Refresh" content="0;http://somewhere.you.want.to.go">
<body onload="window.open('http://somewhere.you.want.to.go','\_top')">
這樣使用者一進到這畫面,就會透過網頁的內容屬性資訊,告訴瀏覽器將重新整理到指定的網址,並在載入完網頁後執行 onload
的指令,接著就會執行 JavaScript 的 windows.open
指令轉跳網頁至指定的網址。
參考資料: