用php或asp建立網頁案頭捷徑的代碼

來源:互聯網
上載者:User

建立一個PHP文檔:名字好記就行如:shortcut.php
PHP文檔中的內容:
代碼 複製代碼 代碼如下:<?php
$Shortcut = "[InternetShortcut]
URL=http://www.jb51.net/
IDList=
[{000214A0-0000-0000-C000-000000000046}]
Prop3=19,2
";
Header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename=指令碼之家.url;");
echo $Shortcut;
?>

要想出現表徵圖請先確保網站根目錄中有 favicon.ico 檔案
上傳到網站,訪問地址:如:http://www.jb51.net/shortcut.php 就會有提示下載一個名為 指令碼之家.url檔案,儲存在本地就是一個捷徑!
下面是asp實現代碼:複製代碼 代碼如下:<%
id=int(request("id"))
if id="" then id="1"
title=request("title")
If title="" Then title="指令碼之家"
Shortcut = "[InternetShortcut] " & vbCrLf
Shortcut = Shortcut & "URL=http://www.jb51.net/article/"&id&".htm?desktop" & vbCrLf
Shortcut = Shortcut & "IDList= " & vbCrLf
Shortcut = Shortcut & "[{000214A0-0000-0000-C000-000000000046}] " & vbCrLf
Shortcut = Shortcut & "Prop3=19,2 " & vbCrLf
Shortcut = Shortcut & " " & vbCrLf
Response.AddHeader "Content-Disposition", "attachment;filename="&title&".url;"
Response.ContentType = "application/octet-stream"
Response.Write Shortcut
%>

需要注意的是,因為可能安全問題導致被鎖定
需要如下操作,在"指令碼之家.url"--》右鍵--》屬性--》解除鎖定 即可訪問,這個就像網上下載的chm檔案一樣需要類似的操作。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.