看人家用使用InstallShield制作ASP安装程序(6) |
//////////////////////////////////////////////////////////////////////////////
//
// FUNCTION: OnFirstUIAfter
//
// EVENT: FirstUIAfter event is sent after file transfer, when installation
// is run for the first time on given machine. In this event handler
// …… |
|
看人家用使用InstallShield制作ASP安装程序(5) |
////////////////////////////////////////////////////////////////////////////////
//
// IIIIIII SSSSSS
// II SS InstallShield (R) …… |
|
看人家用使用InstallShield制作ASP安装程序(4) |
///////////////////////////////////////////////////////////////////////////////
//
// 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/R…… |
|
看人家用使用InstallShield制作ASP安装程序(3) |
下面是建立WEB文件和设置的例子需VBS文件(有虚拟目录设置,但没有权限设置).
////////////////////////////////////////////////////////////////////////////////
//
// IIIIIII SSSSSS
// II SS InstallShield (R)
// II SSSSSS (c) 1996-1999, InstallShield Software Corporation
// II SS (c) 1990-1996, I…… |
|
看人家用使用InstallShield制作ASP安装程序(2) |
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 al…… |
|
看人家用使用InstallShield制作ASP安装程序(1) |
我现在在做ASP的安装程序,这样可以方便用户的使用。我使用的InstallShield版本是InstallShield Professional—Standard Edition6.3。
我没有用过这个东东,问题如下:
问题一
通过Project Wizard-generated script 做好了COPY打包工作。可是6.3版本的好象不支持主体Program...Endprogram,因为我看COPY打包的Scr…… |
|
无需数据库循环的无级分类代码 |
<%@LANGUAGE="VBSCRIPT"%>
<!--数据库表
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[Cat]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[Cat]
GO
CREATE TABLE [dbo].[Cat] (
[Cat_Id] [int] IDENTITY (1, 1) NOT NULL ,
[Cat_Name] [nvarchar…… |
|
有关重复记录的删除(SQL SERVER) |
以下就重复记录删除的问题作一阐述。
有两个意义上的重复记录,一是完全重复的记录,也即所有字段均重复的记录,二是部分关键字段重复的记录,比如Name字段重复,而其他字段不一定重复或都重复可以忽略。
1、对于第一种重复,比较容易解决,使用
select distinct * from tableName
就可以得到无重复记录的结果集。…… |
|
货币大写转换函数的更新 |
<%
dim a '要转换成大写的金额
dim atoc '转换之后的值
Dim String1 '如下定义
Dim String2 '如下定义
Dim String3 '从原A值中取出的值
Dim I '循环变量
Dim J 'A的值乘以100的字符串长度
Dim Ch1 '数字的汉语读法
Dim Ch…… |
|
一个防止外部数据提交的脚本[转帖] |
提交时可能会有人修改script从本地提交,这样存在安全提交的问题,所以应该要求从服务器断路径提交,其他地址提交提交无无效:
<%
server_v1=Cstr(Request.ServerVariables("HTTP_REFERER"))
server_v2=Cstr(Request.ServerVariables("SERVER_NAME"))
if mid(server_v1,8,len(server_v2))<>server_v2 then
re…… |
|
一个取图片尺寸的类,支持jpg,gif,png |
'I have released this source code into the public domain. You may use it
'with no strings attached.
'Just call GetImageSize with a string containing the filename, and
'it will return a user defined type 'ImageSize' (see below)
'Return values of 0 indicate an error of some sort. The error handlin…… |
|
ip限制函数 |
大家如果还有好的建议算法,就联系我!!:)
'******************************
'Function CheckIp(cInput_Ip,cBound_Ip)
'Created by qqdao, [email protected] 2001/11/28
'说明:首先需要根据;号循环,然后判断是否含有"-",如果有则进行拆分处理,最后判断是否在范围内
'参数: cInput_Ip,代检查的ip
' cBound_Ip,给…… |
|
对一篇很长的文章做到完美的分页输出 |
利用统计文章字数,然后达到一定字数就截断输出,但是分页的内容就会在莫名其妙的地方截断,不是很友好。
很简单,在要截断的地方附近找下面的符号:
;’”?。!;'".!
如果后面存在<p>或<br>就分页。主要是要研究文章的格式。
<%
if Request.ServerVariables("Content_Length") > 0 then
content …… |
|
rs.open sql,conn,1,1是仅向前的游标吗?错 |
不知是谁第一个犯了这样的错,大家都一直认为rs.open sql,0,1就打开了一个仅向前的只读游标。
但昨天无意中才发现rs.open sql,conn,0,1才是打开仅向前的只读游标,我当时改了后发现速度是快了不少 :),不过我用rs.open sql,conn,0,4打开批更新的游标就会有错,rs.open sql,conn,0,3还没试,谁现在有空试下报告一下情况 :-)…… |
|
基于WEB系统的多语言支持--ASP国际化多语言详细方案 |
1.ASP部分
a.建立语言包
1.在各个子系统建立"语言包"目录 ,
如BBS--> language -->Simplified
--->Traditional
--->English
2 为每个ASP…… |
|
1栏分页显示(附显示的形式[1][2]) |
显示形式:
ID NAME
1 JULIET
2 SPIRIT
3 GIRL
4 BOY
[1] [2] [3] [4] 页数:1/4 页 4条/页 总记录数:13条
代码:
<!--page4.asp-->
<!--#include file="conn.asp"-->
<html>
<body bgcolor="…… |
|
1栏分页显示(附显示的形式前页,后页) |
显示的形式
id name
1 juliet
2 cristine
3 boy
4 girl
>>首页 前页 后页 尾页 页数:1/4 4记录/页 总记录数:13条
代码:
<!--page.asp-->
<!--#include fi…… |
|
又一种在线人数统计方法(只用1个APPLICATION) |
最普通的方法是用SESSION,但缺点是无法即时反应在线情况(有超时时间)和占用服务器资源(如果有100人在线就有100个SESSION,想想看8);上次(好象间隔很久了耶)介绍了一种采用APPLICATION+COOKIES的方法,但实现方法有些烦琐同时还要设一个隐藏的自刷新页面。
这种方法则避免了以上的弊病,经实践,效果不错(例子:WW…… |
|
asp动态生成wbmp图片的程序 |
asp动态生成wbmp图片的程序
(ASP2001)
<%@ Language=VBScript %>
<%
'函数1:
'将字符串转换成二进制
Function StoB(varstr)
str2bin = ""
For i = 1 To Len(varstr)
varchar = Mid(varstr, i, 1)
str2bin = str2bin & ChrB(AscB(varchar))
Next
StoB = str2bin
End Function
'函数2:
'将每两…… |
|
发送信息页面send.asp--基于web的QQ程序3 |
<html>
<head>
<title>发送信息页面</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<%if request("text")="" then%>
<body bgcolor="#FFFFFF" text="#000000">
发送给:<select size="1" name="name">
<%for i=1…… |
|
« ‹ [1][2][3][4][5][6].. › » 20条/页 共180条 |