如何根据用户银行帐户余额的多少进行显式的提交或终止?
来源:asp之家 时间:2009-11-22 19:28:00
<%@ transaction = required %>
<%
response.buffer = true
' 缓存输出,以显示不同的页面
%>
<html>
<body>
欢迎使用精彩春风之在线银行服务
<%
set bankaction = server.createobject("myexample.bankcomponent")
bankaction.deposit(request("acctnum"))
%>
<p>您的提交的事务已进入处理中.</p>
</body>
</html>
<%
' 处理成功则显示此页面.
sub ontransactioncommit()
response.write "<html>"
response.write "<body>"
response.write "恭喜,您的帐户已经存入."
response.write "</body>"
response.write "</html>"
response.flush()
end sub
%>
<%
' 处理失败则显示此页面
sub ontransactionabort()
response.clear()
response.write "<html>"
response.write "<body>"
response.write "对不起,未能完成您的提交操作!"
response.write "</body>"
response.write "</html>"
response.flush()
end sub
%>
标签:银行,asp,账户
0
投稿
猜你喜欢
GO语言中通道和sync包的使用教程分享
2024-02-10 15:14:16
linux mysql5.6版本的安装配置过程
2024-01-17 03:52:27
python rsync服务器之间文件夹同步脚本
2023-02-23 05:05:56
python使用Pyinstaller如何打包整个项目
2021-10-27 04:10:58
windows下Python安装、使用教程和Notepad++的使用教程
2023-04-21 09:31:39
一文详解Go语言fmt标准库的常用占位符使用
2023-08-07 01:57:56
安装PyInstaller失败问题解决
2022-03-18 04:21:41
由浅入深漫谈margin属性
2007-05-11 17:03:00
二级域名的解析指向ASP源码
2007-10-19 19:13:00
Python django搭建layui提交表单,表格,图标的实例
2022-09-18 19:40:19
python如何将图片生成视频MP4
2023-10-19 09:25:37
Python实现GIF动图以及视频卡通化详解
2022-06-28 03:27:34
asp如何获知页面上的图象的实际尺寸?
2009-11-24 20:50:00
ORACLE常见错误代码的分析与解决三
2024-01-16 13:03:41
使用Python的Django和layim实现即时通讯的方法
2022-05-29 00:41:33
Python中的面向对象编程详解(上)
2021-10-12 14:33:45
解析:在SQL Server下数据库链接的使用
2009-01-23 13:37:00
mysql日志滚动
2024-01-26 18:38:52
能否推荐一个论坛用的数据库结构?
2009-11-01 18:09:00
pandas使用之宽表变窄表的实现
2022-04-21 06:04:02