備用:Asp.NET產生各種網頁捷徑(案頭url捷徑,收藏夾/開始菜單捷徑)

來源:互聯網
上載者:User
 1 using System;
 2 using System.Data;
 3 using System.Configuration;
 4 using System.Collections;
 5 using System.Web;
 6 using System.Web.Security;
 7 using System.Web.UI;
 8 using System.Web.UI.WebControls;
 9 using System.Web.UI.WebControls.WebParts;
10 using System.Web.UI.HtmlControls;
11 
12 public partial class CreateShortcut : System.Web.UI.Page
13 {
14     protected void Page_Load(object sender, EventArgs e)
15     {
16     }
17 
18     /// <summary>
19     /// 建立捷徑
20     /// </summary>
21     /// <param name="Title">標題</param>
22     /// <param name="URL">URL地址</param>
23     private void CreateShortcut(string Title, string URL)
24     {
25         string strFavoriteFolder;
26 
27         // “收藏夾”中 建立 IE 捷徑
28         strFavoriteFolder = System.Environment.GetFolderPath(Environment.SpecialFolder.Favorites);
29         CreateShortcutFile(Title, URL, strFavoriteFolder);
30 
31         // “ 案頭 ”中 建立 IE 捷徑
32         strFavoriteFolder = System.Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
33         CreateShortcutFile(Title, URL, strFavoriteFolder);
34 
35         // “ 連結 ”中 建立 IE 捷徑
36         strFavoriteFolder = System.Environment.GetFolderPath(Environment.SpecialFolder.Favorites) + "\\連結";
37         CreateShortcutFile(Title, URL, strFavoriteFolder);
38 
39         //「開始」菜單中 建立 IE 捷徑
40         strFavoriteFolder = System.Environment.GetFolderPath(Environment.SpecialFolder.StartMenu);
41         CreateShortcutFile(Title, URL, strFavoriteFolder);
42 
43     }
44 
45     /// <summary>
46     /// 建立捷徑
47     /// </summary>
48     /// <param name="Title">標題</param>
49     /// <param name="URL">URL地址</param>
50     /// <param name="SpecialFolder">特殊檔案夾</param>
51     private void CreateShortcutFile(string Title, string URL, string SpecialFolder)
52     {
53         // Create shortcut file, based on Title
54         System.IO.StreamWriter objWriter = System.IO.File.CreateText(SpecialFolder + "\\" + Title + ".url");
55         // Write URL to file
56         objWriter.WriteLine("[InternetShortcut]");
57         objWriter.WriteLine("URL=" + URL);
58         // Close file
59         objWriter.Close();
60     }
61 
62     private void btnShortcut_Click(object sender, System.EventArgs e)
63     {
64         CreateShortcut("IT鳥的專欄 - 部落格圓", http://www.cnblogs.com/ITniao/);
65     }
66 }

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.