|
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文件一樣需要類似的操作。

php技術:用php或asp創建網頁桌面快捷方式的代碼,轉載需保留來源!
鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。