有 1380 筆資料符合您搜尋的條件

tim
2008年 11月 27日, 13:59
版面: html/javascript/asp/php
主題: 如何在使用者端建立Excel表格
回覆: 0
觀看: 2394

如何在使用者端建立Excel表格

在 html 的 head 中加入 ContentType: application/vnd.ms-excel 即可!! 以下為 asp 程式的範例: <%@ Language=VBScript %> <%Response.ContentType = "application/vnd.ms-excel"%> <TABLE> <TR> <TH>Col 1</TD> <TH>Col 2</TD> <TH>Total</TD> </TR> <TR> <TD>1</TD> <TD>2</TD> <TD><FONT color=#000080>=sum(a2:b2)</FONT></...
tim
2008年 11月 27日, 13:59
版面: html/javascript/asp/php
主題: javascript 設定預設首頁的方式
回覆: 0
觀看: 2327

javascript 設定預設首頁的方式

javascript 設定預設首頁的方式:

代碼: 選擇全部

       function set_home(){ 
           window.document.body.style.behavior='url(#default#homepage)'; 
           window.document.body.setHomePage('http://bbs.toseek.info); 
       } 
tim
2008年 11月 27日, 13:58
版面: html/javascript/asp/php
主題: [ASP]如何抓網頁原始碼
回覆: 0
觀看: 2501

[ASP]如何抓網頁原始碼

使用 inet control 來進行抓網頁原始碼的動作

代碼: 選擇全部

    <% 
    'inet.asp 
    Set Inet = Server.CreateObject("InetCtls.Inet.1") 
    Inet.RequestTimeOut=20 
    Inet.Url = "url" 
    s = Inet.OpenURL 
    response.write s 
    'response.write(server.htmlencode(s)) 
    %> 
tim
2008年 11月 27日, 13:58
版面: html/javascript/asp/php
主題: 介紹很多有關網頁技術文件的網站
回覆: 0
觀看: 2511

介紹很多有關網頁技術文件的網站

讚....介紹很多有關網頁技術文件的網站

http://www.w3schools.com/default.asp
tim
2008年 11月 27日, 13:57
版面: html/javascript/asp/php
主題: 好用的Scripting Help Documentation
回覆: 0
觀看: 2683

好用的Scripting Help Documentation

Windows Script 5.6 Documentation 在 windows 下常用的 VBScript, JScript, WSH Script 的 聯合說明 help 檔. 官方下載網頁, 內容包含了 1. Microsoft Visual Basic® Scripting Edition 2. Microsoft JScript® 3. Windows Script Host 4. Windows Script components 四大主題, 就是之前的 VBScript55 和 JScript 的合併版再加上 WSH 的聯合說明檔啦, 大概看了一下, 其實和之前那個版本 差沒...
tim
2008年 11月 27日, 13:56
版面: html/javascript/asp/php
主題: 有趣的瀏覽器震動
回覆: 0
觀看: 2432

有趣的瀏覽器震動

下面展示了一個可以震動瀏覽器的 javascript, 使用 shake 即可, 可以看到的語法是使用了: self.moveBy(x,y); 使得瀏覽器會進行上下左右的移動, 看起來就會類似震動的感覺了! <html> <head> <SCRIPT LANGUAGE="javascript1.2"> <!-- <!-- Begin netscape = (navigator.appName == "Netscape"); n4 = netscape && (parseInt(navigator.appVersion) >= 4); ex...
tim
2008年 11月 27日, 13:56
版面: html/javascript/asp/php
主題: [轉貼]PHP ADODB 1.99版手冊中文翻譯
回覆: 0
觀看: 2345

[轉貼]PHP ADODB 1.99版手冊中文翻譯

http://www.php5.idv.tw/documents/ADODB/ PHP ADODB 1.99版手冊中文翻譯 翻譯作者:Tripc ------------------ ADODB PHP 在資料庫的支援上是很令人稱道的,幾乎所有的知名資料庫系統都有對應的函數群支援,而且支援的很完整。但很不幸的,每一群資料庫支援函數無論在名稱或參數結構上,都有很大的差異,這使得PHP的系統開發者在面臨更換資料庫時,總會覺得痛苦萬分。難道這個問題就沒有解決方法嗎?呵呵,當然有,答案就是我現在要介紹的 ADODB 這個PHP物件。 ADODB提供了完整的方法和屬性讓工程師去控制資料庫系統,更棒的是你...
tim
2008年 11月 27日, 13:56
版面: html/javascript/asp/php
主題: [轉貼]Mouse Clock
回覆: 0
觀看: 2400

[轉貼]Mouse Clock

轉貼自: http://webdeveloper.earthweb.com/webjs/jsmulti/item.php/74941 一個會跟著滑鼠的 javascript 的 mouse clock !! Mouse Clock Submitted: 02/20/2002 By: Landy Johnson A clock displays next to the cursor with the verbose date spinning around the clock face. •System Requirements: Should work with all, tested in ...
tim
2008年 11月 27日, 13:48
版面: html/javascript/asp/php
主題: [轉貼]Circle Ticker圓盤字串
回覆: 0
觀看: 2424

[轉貼]Circle Ticker圓盤字串

轉貼自: http://webdeveloper.earthweb.com/webjs/jstext/item.php/287171 很不錯的效果, 而且和中文完全相容! Circle Ticker Submitted: 10/23/2003 By: Peter Gehrig Circle ticker draws your messages around a circle in the center of your webpage. Impressive shade and fade effect. Easy configuration of messages, colors, size. ...