• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

ASP之在服务器端创建快捷方式例子之微软例子改造版。

发布: 2007-6-30 18:56 | 作者: admin | 来源: | 查看: 13次 | 进入软件测试论坛讨论

领测软件测试网 微软给了我们一个创建快捷方式的例子,但如果直接用在ASP中会提示存在一个错误。
例子原码如下(VBscript格式):
‘’ Windows Script Host Sample Script
‘’
‘’ ------------------------------------------------------------------------
‘’               Copyright (C) 1996-1997 Microsoft Corporation
‘’
‘’ You have a royalty-free right to use, modify, reproduce and distribute
‘’ the Sample Application Files (and/or any modified version) in any way
‘’ you find useful, provided that you agree that Microsoft has no warranty,
‘’ obligations or liability for any Sample Application Files.
‘’ ------------------------------------------------------------------------


‘’ This sample demonstrates how to use the WSHShell object to create a shortcut
‘’ on the desktop.

L_Welcome_MsgBox_Message_Text   = "此脚本将在您的桌面上创建 Notepad 的快捷方式。"
L_Welcome_MsgBox_Title_Text     = "Windows Scripting Host 范例"
Call Welcome()

‘’ ********************************************************************************
‘’ *
‘’ * Shortcut related methods.
‘’ *

Dim WSHShell
Set WSHShell = WScript.CreateObject("WScript.Shell")

‘’注意上面这一句,不知是写错了还是微软能使其运行,反正我一运行就提示没有对象。我将之改成了:Set WSHShell = server.CreateObject("WScript.Shell")

Dim MyShortcut, MyDesktop, DesktopPath

‘’ Read desktop path using WshSpecialFolders object
DesktopPath = WSHShell.SpecialFolders("Desktop")

‘’ Create a shortcut object on the desktop
Set MyShortcut = WSHShell.CreateShortcut(DesktopPath & "\notepad 的快捷方式.lnk")

‘’ Set shortcut object properties and save it
MyShortcut.TargetPath = WSHShell.ExpandEnvironmentStrings("%windir%\notepad.exe")
MyShortcut.WorkingDirectory = WSHShell.ExpandEnvironmentStrings("%windir%")
MyShortcut.WindowStyle = 4
MyShortcut.IconLocation = WSHShell.ExpandEnvironmentStrings("%windir%\notepad.exe, 0")
MyShortcut.Save

WScript.Echo "在桌面上已存在 Notepad 的快捷方式。"

‘’ ********************************************************************************
‘’ *
‘’ * Welcome
‘’ *
Sub Welcome()
    Dim intDoIt

    intDoIt =  MsgBox(L_Welcome_MsgBox_Message_Text,    _
                      vbOKCancel + vbInformation,       _
                      L_Welcome_MsgBox_Title_Text )
    If intDoIt = vbCancel Then
        WScript.Quit
    End If
End Sub

下面是我改造后用在ASP中的。
<%L_Welcome_MsgBox_Message_Text   = "此脚本将在您的桌面上创建 Notepad 的快捷方式。"
L_Welcome_MsgBox_Title_Text     = "Windows Scripting Host 范例"
response.write L_Welcome_MsgBox_Message_Text
Dim WSHShell
Set WSHShell = server.CreateObject("WScript.Shell")
Dim MyShortcut, MyDesktop, DesktopPath
DesktopPath = WSHShell.SpecialFolders("Desktop")
Set MyShortcut = WSHShell.CreateShortcut(DesktopPath & "\notepad 的快捷方式.lnk")
MyShortcut.TargetPath = WSHShell.ExpandEnvironmentStrings("%windir%\notepad.exe")
MyShortcut.WorkingDirectory = WSHShell.ExpandEnvironmentStrings("%windir%")
MyShortcut.WindowStyle = 4
MyShortcut.IconLocation = WSHShell.ExpandEnvironmentStrings("%windir%\notepad.exe, 0")
MyShortcut.Save
response.write "<BR>快捷方式创建完毕!"
%>

已经在我的NT4上测试通过。

延伸阅读

文章来源于领测软件测试网 https://www.ltesting.net/


关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备10010545号-5
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网