用php或asp创建网页桌面快捷方式的代码
作者:bea
新建一个PHP文档:名字好记就行如:shortcut.php PHP文档中的内容: 代码 代码如下: <?php $Shortcut = "[InternetShortcut] URL=http:/// IDList= [{000214A0-0000-0000-C000-000000000046}] Prop3=19,2 "; Header("Content-type: application/octet-stream"); header("Con
新建一个PHP文档:名字好记就行如:shortcut.php
PHP文档中的内容:
代码
代码如下:
<?php
$Shortcut = "[InternetShortcut]
URL=http:///
IDList=
[{000214A0-0000-0000-C000-000000000046}]
Prop3=19,2
";
Header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename=.url;");
echo $Shortcut;
?>
要想出现图标请先确保网站根目录中有 favicon.ico 文件
上传到网站,访问地址:如:http:///shortcut.php 就会有提示下载一个名为 .url文件,保存在本地就是一个快捷方式!
下面是asp实现代码:
代码如下:
<%
id=int(request("id"))
if id="" then id="1"
title=request("title")
If title="" Then title=""
Shortcut = "[InternetShortcut] " & vbCrLf
Shortcut = Shortcut & "URL=http:///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
%>
需要注意的是,因为可能安全问题导致被锁定
需要如下操作,在".url"--》右键--》属性--》解除锁定 即可访问,这个就像网上下载的chm文件一样需要类似的操作。
有用 | 无用
PHP文档中的内容:
代码
代码如下:
<?php
$Shortcut = "[InternetShortcut]
URL=http:///
IDList=
[{000214A0-0000-0000-C000-000000000046}]
Prop3=19,2
";
Header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename=.url;");
echo $Shortcut;
?>
要想出现图标请先确保网站根目录中有 favicon.ico 文件
上传到网站,访问地址:如:http:///shortcut.php 就会有提示下载一个名为 .url文件,保存在本地就是一个快捷方式!
下面是asp实现代码:
代码如下:
<%
id=int(request("id"))
if id="" then id="1"
title=request("title")
If title="" Then title=""
Shortcut = "[InternetShortcut] " & vbCrLf
Shortcut = Shortcut & "URL=http:///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
%>
需要注意的是,因为可能安全问题导致被锁定
需要如下操作,在".url"--》右键--》属性--》解除锁定 即可访问,这个就像网上下载的chm文件一样需要类似的操作。
有用 | 无用
猜你喜欢
您可能感兴趣的文章:
- phpMyadmin 用户权限中英对照
- 使用PHPMYADMIN操作mysql数据库添加新用户和数据库的方法
- ExtJS与PHP、MySQL实现存储的方法
- php截取utf-8中文字符串乱码的解决方法
- php上的memcache和memcached两个pecl库
- DW中链接mysql数据库时,建立字符集中文出现乱码的解决方法
- PHP初学者最感迷茫的问题小结
- php echo()和print()、require()和include()函数区别说明
- PHP 一个比较完善的简单文件上传
- php+mysql 实现身份验证代码
- PHP 抓取网页图片并且另存为的实现代码
- Cakephp 执行主要流程
- php中的观察者模式
- PHP 获取远程文件内容的函数代码
- PHP中基本符号及使用方法
- PHP技术开发技巧分享
- PHP初学者常见问题集合 修正版(21问答)
- PHP5 字符串处理函数大全
- Smarty Foreach 使用说明