//检查点设置语句
//tmp在此时为临时参数
 web_reg_find("SaveCount=tmp",
  "Text=xxx",
  LAST);
 
//事务判定语句
//因为tmp为临时参数,所以需要用lr_eval_string函数将起转化为变量
    if(atoi(lr_eval_string("{tmp}"))>=1){
  lr_end_transaction("register", LR_PASS);
 }
 else
  lr_end_transaction("register", LR_FAIL);

最新文章

  1. 【读书笔记】iOS-ARC-循环引用-解决办法
  2. zabbix-agent passive
  3. "淘宝推荐系统简介"分享总结
  4. android19以上和以下uri转路径的方法
  5. mongodb 数据导入导出
  6. 关于Eclipse的Save时的自定义操作
  7. live555源码研究(三)------UsageEnvironment类
  8. Ubuntu 13.10 PHP 5.5.x mcrypt missing – Fatal Error: Undefined function mcrypt_encrypt()!
  9. 消息处理之EventBus ——使用篇
  10. Relocation - POJ 2923(状态压缩+01背包)
  11. windows phone (26) ApplicationBar应用程序栏
  12. HDU5505
  13. [原创]安全系列之端口敲门服务(Port Knocking for Ubuntu 14.04 Server)
  14. leetcode range sum query
  15. ABP官方文档翻译 7.2 Hangfire集成
  16. 命令行BASH的基本操作
  17. sitecore8.2 如何关闭性能计数器
  18. SpringMVC异步文件上传下载
  19. wangedit
  20. Quartz框架学习(1)—核心层次结构

热门文章

  1. Symantec Backup Exec Agent 推送错误Error connecting to the remote computer. Ensure that the computer is available, has WMI enabled and is not blocked by a firewall
  2. MyBatis笔记----Mybatis3.4.2与spring4整合:增删查改
  3. spring4笔记----spring4国际化
  4. ros中自定义消息 报错 ImportError: No module named em
  5. SQL Script
  6. Sql2012如何将远程服务器数据库及表、表结构、表数据导入本地数据库
  7. hive笔记:复杂数据类型-array结构
  8. 多文档界面的实现(DotNetBar的superTabControl)
  9. Linux下进程的创建过程分析(_do_fork do_fork详解)--Linux进程的管理与调度(八)
  10. Django中间件的使用