UWInfo Blog
發表新文章
[Join] | [忘記密碼] | [Login]
搜尋

搜尋意見
文章分類-#Author#
[所有文章分類]
所有文章分類
  • ASP.NET (48)
  • ASP.NET2.0 (15)
  • ASP.NET4.0 (34)
  • JavaScript (49)
  • jQuery (26)
  • FireFox (4)
  • UW系統設定 (3)
  • SQL (39)
  • SQL 2008 (25)
  • mirror (4)
  • SVN (4)
  • IE (9)
  • IIS (20)
  • IIS6 (1)
  • 閒聊 (7)
  • W3C (6)
  • 作業系統 (9)
  • C# (23)
  • CSS (12)
  • FileServer (1)
  • HTML 5 (11)
  • CKEditor (3)
  • UW.dll (13)
  • Visual Studio (16)
  • Browser (8)
  • SEO (1)
  • Google Apps (3)
  • 網站輔助系統 (4)
  • DNS (5)
  • SMTP (4)
  • 網管 (11)
  • 社群API (3)
  • SSL (4)
  • App_Inventor (1)
  • URLRewrite (2)
  • 開發工具 (6)
  • JSON (1)
  • Excel2007 (1)
  • 試題 (3)
  • LINQ (1)
  • bootstrap (0)
  • Vue (3)
  • IIS7 (3)
  • foodpanda (2)
  • 編碼 (2)
  • 資安 (3)
  • Sourcetree (1)
  • MAUI (1)
  • CMD (1)
  • my sql (1)
最新回應
  • Newtonsoft.Json.JsonConvert.DeserializeObject 失敗的情況
    test...more
  • dotnet ef dbcontext scaffold
    ...more
  • [ASP.NET] 利用 aspnet_regiis 加密 web.config
    ...more
  • IIS ARR (reverse proxy) 服務安裝
    ...more
  • [錯誤訊息] 請加入 ScriptResourceMapping 命名的 jquery (區分大小寫)
    ...more
  • 用 Javascript 跨網頁讀取 cookie (Cookie cross page, path of cookie)
    ...more
  • 線上客服 - MSN
    本人信箱被盜用以致資料外洩,是否可以請貴平台予以協助刪除該信箱之使用謝謝囉...more
  • 插入文字到游標或選取處
    aaaaa...more
  • IIS 配合 AD (Active Directory) 認証, 使用 .Net 6.0
    太感謝你了~~~你救了我被windows 認證卡了好幾天QQ...more
  • PostgreSQL 的 monitor trigger
    FOR EACH ROW 可能要改為 FOR EACH STATEMENT ...more
標籤
  • SES
  • 34
  • 326
  • mibs212112
  • Su
  • a
  • ti
  • 指令
  • 200
  • server
  • ad
  • -9649 UNIO
  • c
  • Button
  • aspx ORDER
  • 88 ORDER B
  • net order
  • for2121121
  • SqlCacheDe
  • Forbidden
  • 梨子
  • evHH5Dnk
  • sonar
  • doug
  • 6100
  • -1797
  • -1023
  • cookie
  • -9328
  • ie
  • validation
  • 剪
  • EN
  • 0 UNION AL
  • domain
  • .prop
  • [U2]
  • CROS
  • 184
  • https
  • 622
  • 56
  • 備份
  • [t]
  • 88
  • ? ORDER BY
  • images
  • 54,
  • admin ORDE
  • 擴充套件
頁數 55 / 55 上一頁
搜尋 結果:
URL Rewrite
http://www.microsoft.com/taiwan/technet/iis/expand/URLRewrite.aspx

http://www.cnblogs.com/rickel/archive/2007/02/04/639616.html
More...
Reiko, 2012/4/9 下午 07:36:10
bug-tracer
http://m.unt.com.tw/tch/test/bug-tracer.aspx?url=http://quaker.bike.idv.tw/



view-source:http://m.unt.com.tw/tch/test/bug-tracer.aspx?url=http://quaker.bike.idv.tw/
More...
Reiko, 2012/4/5 下午 02:11:26
用 JavaScript 複製網頁上的圖片到剪貼簿
資料來源:http://sanchen.blogspot.com/2008/07/javascript.html

在 IE 中很簡單就能辦到, 至於其他的瀏覽器......目前還沒這個需求, 先擱著~~~~~

var img = document.getElementsByTagName("IMG")[0];
var rng = document.body.createControlRange();
rng.add(img);
rng.execCommand('Copy');
真是簡單到不行! 可以看出 Microsoft 當初那群規劃設計 IE 的人實在是太厲害了!!
More...
Reiko, 2012/3/30 下午 05:33:01
插入文字到游標或選取處

<textarea id="myTextArea" style="WIDTH: 376px; HEIGHT: 160px" rows="10" cols="44"></textarea>
<input type="button" value="插入測試" onclick="InsertContent('myTextArea','我是要插入的文字');">

function InsertContent(AreaID,Content){
   var myArea = document.getElementById(AreaID);
   //IE
   if (document.selection){
      myArea.focus();
      var mySelection =document.selection.createRange();
      mySelection.text = Content;
   }else{
   //FireFox
     var myPrefix = myArea.value.substring(0, myArea.selectionStart);
     var mySuffix = myArea.value.substring(myArea.selectionEnd);
     myArea.value = myPrefix + Content + mySuffix;
   }
}

More...
Reiko, 2012/3/29 下午 07:30:01
JavaScript中replace只置換第一個符合的字串問題

資料來源:http://www.dotblogs.com.tw/topcat/archive/2008/07/07/4449.aspx

在要置換的字串前方,加上\,ex:
var s=s.replace(/\你要置換的字串/g,'AA');


/.../g同前後引號的用法。
More...
Reiko, 2012/3/29 下午 05:06:59
外掛 Lazy Load-延遲載入網頁圖片

資料來源:http://www.dotblogs.com.tw/demarco/archive/2010/08/03/16980.aspx

為了減輕server loading
圖片的顯示 加上了JQuery外掛 Lazy Load
讓圖片延遲載入

瀏覽器 拉到該可視範圍內
圖片才載入

前提必須有jquery

接著需下載
queryLoader.js
jquery.lazyload.mini.js

塞進所用呈現的檔案內

 <head>
  <title>test</title>
  <script type="text/javascript" src="jquery-1.2.6.pack.js"></script>
  <link rel="stylesheet" href="queryLoader.css" type="text/css" />
  <script type='text/javascript' src='jquery.lazyload.mini.js'></script>
</head>

並加上

 <script type="text/javascript">
  $("img").lazyload({ effect: "fadeIn" });
</script>


img就是html的

<img src="/images/001.gif" />


下載Lazy Load網址:http://www.appelsiini.net/projects/lazyload

More...
Reiko, 2012/3/28 下午 02:23:40
|< …46474849505152535455 >|
頁數 55 / 55 上一頁
~ Uwinfo ~