- Oct 11 Wed 2017 17:08
-
[旅遊] 泰銖/泰幣/THB 換錢匯率比較
- Oct 11 Wed 2017 16:06
-
[旅遊] 泰銖/泰幣/THB 換錢匯率比較
- Oct 19 Mon 2015 18:26
-
failed due to the following error: 80070005 存取被拒
轉自:https://ms-net.blogspot.tw/2012/11/the-solution-of-using-aspnet-create.html
問題:當在ASP.NET中使用Microsoft.Office.Interop.Excel之ApplicationClass來讀取Server上的Excel時,預設會出現以下的錯誤訊息:
Retrieving the COM class factory for component with CLSID {00024500-0000-0000-C000-000000000046} failed due to the following error: 80070005 存取被拒.
問題:當在ASP.NET中使用Microsoft.Office.Interop.Excel之ApplicationClass來讀取Server上的Excel時,預設會出現以下的錯誤訊息:
Retrieving the COM class factory for component with CLSID {00024500-0000-0000-C000-000000000046} failed due to the following error: 80070005 存取被拒.
- May 13 Tue 2014 14:53
-
[ASP.NET] 無法辨認的屬性 targetFramework
應用程式集區(AppPool)中只有.NET Framework 2.0可以選
但是明明有安裝新版本的Framework 卻在下拉選單看不到,只有
- Classic .NET AppPool
- DefaultAppPool
但是明明有安裝新版本的Framework 卻在下拉選單看不到,只有
- Classic .NET AppPool
- DefaultAppPool
- May 13 Tue 2014 14:42
-
[ASP.NET] 「單鍵發行」功能 (MsDeploy)

要從Visual Studio把ASP發佈到IIS上需要
1.IIS的 管理服務 開啟遠端連線
2.IIS Server上安裝 Web Deployment Tool (可從Web Platform Installer裝)
- Jan 13 Mon 2014 16:44
-
[程式] jquery 滑動至某個錨點
來源網址: https://abgne.tw/jquery/apply-jquery/jquery-scroll-to-page-top.html
$(function(){
// 幫 a.abgne_gotoheader 加上 click 事件
$('a.abgne_gotoheader').click(function(){
// 讓捲軸用動畫的方式移動到 #header 的 top 位置
// 並加入動畫效果
// 感謝網友 sam 修正 Opera 問題
var $body = (window.opera) ? (document.compatMode == "CSS1Compat" ? $('html') : $('body')) : $('html,body');
$body.animate({
scrollTop: $('#header').offset().top
}, 2000, 'easeOutBounce');
return false;
});
});
- Dec 05 Thu 2013 19:47
-
[電腦] SSL運作原理
- Jan 18 Fri 2013 10:13
-
[Linux] 查看哪支程式正在執行
用top指令可以看到現在系統負荷狀況,以及哪些軟體占用資源
但也會需要知道哪些程序造成Loading太重
這時候可以用以下這行
ps auxwwf|grep php|grep -v grep
但也會需要知道哪些程序造成Loading太重
這時候可以用以下這行
ps auxwwf|grep php|grep -v grep
- Jan 18 Fri 2013 10:13
-
[Linux] 查看哪支程式正在執行
- Jun 19 Tue 2012 17:30
-
[Android] 得到手機系統時間 Time And Date
利用Calendar获取view plain
Calendar c = Calendar.getInstance();
取得系统日期:year = c.get(Calendar.YEAR)
month = c.grt(Calendar.MONTH)
day = c.get(Calendar.DAY_OF_MONTH)
取得系统时间:hour = c.get(Calendar.HOUR_OF_DAY);
minute = c.get(Calendar.MINUTE)
Calendar c = Calendar.getInstance();
取得系统日期:year = c.get(Calendar.YEAR)
month = c.grt(Calendar.MONTH)
day = c.get(Calendar.DAY_OF_MONTH)
取得系统时间:hour = c.get(Calendar.HOUR_OF_DAY);
minute = c.get(Calendar.MINUTE)
利用Time获取