当前位置: 首页 > 图文教程 > 网络编程 > ASP > 使用InstallShield制作ASP安装程序(2)

ASP
揭开ASP神秘面纱(2)
揭开ASP神秘面纱(3)
揭开ASP神秘面纱(4)
揭开ASP神秘面纱(5)
让网站活起来(1)
让网站活起来(2)
让网站活起来(3)
让网站活起来(4)
如何在ASP.Net中取得环境变量的值
将HTML表单数据存储为XML格式(1)
将HTML表单数据存储为XML格式(2)
将HTML表单数据存储为XML格式(3)
ASP.Net调试之三板斧:第一招
ASP.Net调试之三板斧:第二招
ASP.Net调试之三板斧:第三招
新闻更新系统(1)
新闻更新系统(2)
新闻更新系统(3)
ubb风格论坛中自您上次来后有新的贴子的功能的asp实现
一个新版本的ubb转化程序

使用InstallShield制作ASP安装程序(2)


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 125 ::
收藏到网摘: n/a

  6.3版好象是用事件驱动的:
//////////////////////////////////////////////////////////////////////////////
//
// 函数: OnFirstUIBefore
//
// 事件: FirstUIBefore event is sent when installation is run for the first
// time on given machine. In the handler installation usually displays
// UI allowing end user to specify installation parameters. After this
// function returns, ComponentTransferData is called to perform file
// transfer.
//
///////////////////////////////////////////////////////////////////////////////

OnFirstUIBefore()是在某台电脑上第一次运行安装时执行.

//////////////////////////////////////////////////////////////////////////////
//
// 函数: OnFirstUIAfter
//
// 事件: FirstUIAfter event is sent after file transfer, when installation
// is run for the first time on given machine. In this event handler
// installation usually displays UI that will inform end user that
// installation has been completed successfully.
//
///////////////////////////////////////////////////////////////////////////////
OnFirstUIAfter()在文件复制结束后运行.