ASP實現在用戶桌面創建一個快捷方式,這樣用戶可以直接雙擊這個快捷方式打開你的網站。
功能:ASP創建網頁桌面快捷方式的代碼
來源:www.ASPbc.com
作者:wangsdong
原創文章,轉載請保留此信息
代碼如下:
<%
title="ASP編程網asp教程,net教程,asp貼吧,專業ASP編程網站"
Shortcut = "[InternetShortcut] " & vbCrLf
Shortcut = Shortcut & "URL=http://www.ASPbc.com" & 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
%>
把上面的代碼保存為ASP文件,運行就可以看到效果了。
如果你要想將你的ASP網站的圖標出現,請先確保網站根目錄中有 favicon.ico 文件。