asp与php实现生成快捷方式并下载桌面的方法
时间:2013-01-05 20:38来源:未知 作者:admin 点击: 次
生成原理:
即将url快捷方式的内容强制输出为附件,当访问时即下载到了一个定制的网站快捷方式。
asp生成代码:
<%
Shortcut = "[DEFAULT]" & vbCrLf
Shortcut = Shortcut & "BASEURL=http://www.lixinwei.cn/?desktop" & vbCrLf
Shortcut = Shortcut & "[{000214A0-0000-0000-C000-000000000046}]" & vbCrLf
Shortcut = Shortcut & "Prop3=19,2" & vbCrLf
Shortcut = Shortcut & "[InternetShortcut]" & vbCrLf
Shortcut = Shortcut & "URL=http://www.lixinwei.cn/?desktop" & vbCrLf
Shortcut = Shortcut & "IDList=[{000214A0-0000-0000-C000-000000000046}]" & vbCrLf
Shortcut = Shortcut & "IconFile=http://www.lixinwei.cn/favicon.ico" & vbCrLf
Shortcut = Shortcut & "IconIndex=" & id & vbCrLf
Shortcut = Shortcut & "HotKey=0" & vbCrLf
Shortcut = Shortcut & "Prop3=19,2" & vbCrLf
Response.AddHeader "Content-Dispositon", "attachment;filename=快捷方式.url"
Response.ContetType = "application/octet-steam"
Response.Write Shortcut
%>php生成代码:
<?php
$content='
[DEFAULT]
BASEURL=http://www.lixiwei.cn/?desktop
[{000214A0-0000-0000-C000-000000000046}]
Prop3=19,2
[InternetShortcut]
URL=http://www.lixinwei.cn/?desktop
IDList=[{000214A0-0000-0000-C000-000000000046}]
IconFile=http://www.lixinwei.cn/favicon.ico
IconIndex=1
HotKey=0
Prop3=19,2';
header("Content-type:application/octet-stream");
header("Content-Disposition:attachment;快捷方式.url;");
echo $content;
?>