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

網頁創建快捷方式到桌面多種方法

編輯:關於PHP編程

我們會看到很多的網站不但有設置首頁,加入收藏同時還有一個加和到桌面快捷方式的功能,下面我來給大家介紹網頁創建快捷方式到桌面多種方法介紹。有需要的朋友可參考。

最簡單的js實現方法

 代碼如下 復制代碼

<script language="JavaScript"> 

function toDesktop(sUrl,sName){ 

try 

var WshShell = new ActiveXObject("WScript.Shell"); 

var oUrlLink = WshShell.CreateShortcut(WshShell.SpecialFolders("Desktop") + "" + sName + ".url"); 

oUrlLink.TargetPath = sUrl; 

oUrlLink.Save(); 

catch(e) 

alert("請點擊彈出對話框的:是 "); 

</script> 

<input name="btn" type="button" id="btn" value="把百度創建快捷方式到桌面" onClick="toDesktop('http://www.bkjia.com/','百度一下,你就知道!')"> 

<input name="btn" type="button" id="btn" value="C盤" onClick="toDesktop('file://C:','C盤')"> 

不足:這樣做如果浏覽器做了安全設置我們是不能使用上面的方法的。

寫php程序的朋友可能也知道一種辦法,代碼如下

 代碼如下 復制代碼

<?php 

$Shortcut = "[InternetShortcut] 

URL=http://www.bkjia.com 

IconFile=http://www.bkjia.com/favicon.ico 

IconIndex=0 

HotKey=1613 

IDList= 

[{000214A0-0000-0000-C000-000000000046}] 

Prop3=19,2"; 

header("Content-Type: application/octet-stream"); 

header("Content-Disposition: attachment; filename=蛻變無憂.url"); 

echo $Shortcut; 

?> 


<a href="">發送到桌面</a> 


asp.net程序員可能也知道如下代碼

 

 代碼如下 復制代碼 using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class CreateShortcut : System.Web.UI.Page
{
  protected void Page_Load(object sender, EventArgs e)
{
}
/// <summary>
/// 創建快捷方式
/// </summary>
/// <param name="Title">標題</param>
/// <param name="URL">URL地址</param>
private void CreateShortcut(string Title, string URL)
{
string strFavoriteFolder;
// “收藏夾”中 創建 IE 快捷方式
strFavoriteFolder = System.Environment.GetFolderPath(Environment.SpecialFolder.Favorites);
CreateShortcutFile(Title, URL, strFavoriteFolder);
// “ 桌面 ”中 創建 IE 快捷方式
strFavoriteFolder = System.Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
CreateShortcutFile(Title, URL, strFavoriteFolder);
// “ 鏈接 ”中 創建 IE 快捷方式
strFavoriteFolder = System.Environment.GetFolderPath(Environment.SpecialFolder.Favorites) + "鏈接";
CreateShortcutFile(Title, URL, strFavoriteFolder);
//「開始」菜單中 創建 IE 快捷方式
strFavoriteFolder = System.Environment.GetFolderPath(Environment.SpecialFolder.StartMenu);
CreateShortcutFile(Title, URL, strFavoriteFolder);
}
/// <summary>
/// 創建快捷方式
/// </summary>
/// <param name="Title">標題</param>
/// <param name="URL">URL地址</param>
/// <param name="SpecialFolder">特殊文件夾</param>
private void CreateShortcutFile(string Title, string URL, string SpecialFolder)
{
// Create shortcut file, based on Title
System.IO.StreamWriter objWriter = System.IO.File.CreateText(SpecialFolder + "" + Title + ".url");
// Write URL to file
objWriter.WriteLine("[InternetShortcut]");
objWriter.WriteLine("URL=" + URL);
// Close file
objWriter.Close();
}
private void btnShortcut_Click(object sender, System.EventArgs e)
{
CreateShortcut("", http://www.bkjia.com);
}
}

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