这篇文章主要为大家详细介绍了php或asp创建网页桌面快捷方式的简单示例,具有一定的参考价值,可以用来参考一下。
感兴趣的小伙伴,下面一起跟随四海网的小编小韵来看看吧!
新建一个PHP文档:名字好记就行如:shortcut.php代码如下:
<?php
$Shortcut = "[InternetShortcut]
URL=https://www.q1010.com/
IDList=
[{000214A0-0000-0000-C000-000000000046}]
Prop3=19,2
";
Header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename=四海网.url;");
echo $Shortcut;
?>
代码如下:
<%
id=int(request("id"))
if id="" then id="1"
title=request("title")
If title="" Then title="四海网"
Shortcut = "[InternetShortcut] " & vbCrLf
Shortcut = Shortcut & "URL=https://www.q1010.com/article/"&id&".htm?desktop" & 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
%>
本文来自:http://www.q1010.com/173/13706-0.html
注:关于php或asp创建网页桌面快捷方式的简单示例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。