添加網頁桌面快捷方式的代碼


JS代碼

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("當前IE安全級別不允許操作!");  
    }
}

<a href="javascript:void(0);" onclick="toDesktop('http:\//www.163.com/','163網易')">創建快捷方式</a>

asp代碼

<%
    title="鄭州簡悅信息技術有限公司url"
    Shortcut = "[InternetShortcut] " & vbCrLf
    Shortcut = Shortcut & "URL=http://www.uzuz8.net" & 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
%>

 C#代碼

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.uzuz8.net);
     }
 }


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM