|
lr_output_message("The current username is %s",lr_eval_string("{username}"));
lr_output_message("The current password is %s",lr_eval_string("{password}"));
if(status==0)
lr_end_transaction("login",LR_PASS);
else
lr_end_transaction("login",LR_FAIL);
if(trans_time)
lr_output_message("login事务耗时 %f 秒",trans_time);
else
lr_output_message("The duration cannot be determined.");
if(atoi(lr_eval_string("{loginCount}"))>0){
lr_error_message("login failed");}
else
{lr_output_message("login successful");
return(0);}
lr_end_transaction("login", LR_AUTO);
Failed to end Transaction "login" (by name). Please check that you made a call to start transaction operation.麻烦大家帮忙看看 |
|