程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 用php或asp創建網頁桌面快捷方式的代碼

用php或asp創建網頁桌面快捷方式的代碼

編輯:關於PHP編程

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

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved