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

2016-01-29 20:16 17 1 收藏

看人家用使用InstallShield制作ASP安装程序(2),看人家用使用InstallShield制作ASP安装程序(2)

【 tulaoshi.com - ASP 】

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.
//
///////////////////////////////////////////////////////////////////////////////

(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/asp/)

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

(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/asp/)

//////////////////////////////////////////////////////////////////////////////
//
// 函数: 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()在文件复制结束后运行.

来源:http://www.tulaoshi.com/n/20160129/1510934.html

延伸阅读
标签: ASP
  /////////////////////////////////////////////////////////////////////////////// // // FUNCTION: OnMaintUIAfter // // EVENT: MaintUIAfter event is sent after file transfer, when end user runs // installation that has already been installed on the machine. Usually // this happens through Add/Remove Programs app...
标签: ASP
  ////////////////////////////////////////////////////////////////////////////// // //  FUNCTION:  OnFirstUIAfter // //  EVENT:      FirstUIAfter event is sent after file transfer, when installation //        &nbs...
标签: ASP
#include "ifx.h" //不能移动 ////////////////////////////////////////////////////////////////////////////// // 用InstallShield 进行 ASP 软件的打包和自动安装 // 原创作者: 贾俊 (Jaron) // 网址: http://www.jiangdu.net // 邮件: jaron@jdinfo.net // 首次发表于网易,ChinaASP,ASPHouse //////////////////////////////////////////...
标签: ASP
如何使用ASP制作类似安装向导的页面? 面临的主要问题何在: 1。界面和一个Windows Wizard完全一样,有Next和Back按钮 2。用户可以使用Back按钮回到以前的任何一步,并且能够改变以前任何一步中已经选择的内容 3。form必须记住所有填入的内容 4。不能够使用数据库 5。不能够使用Sessions,防止如果Sessiosn失效后用户的所有输入丢失,不幸的是,...
标签: Web开发
%@Language="JavaScript" % % function OpenDB(dbname) { var connstr = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source="+Server.MapPath(dbname); var conn = Server.CreateObject("ADODB.Connection"); conn.Open(connstr); return conn; } var sResult = new Array(); var oConn = Ope...

经验教程

614

收藏

100
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部