/* PAGE DESCRIPTION: This is a form handler for "query.html". It handles a request for a particular transaction given a transaction id from a user. If the id is valid, information about the transaction is printed to the screen. */ // see uitility.js for definition of "IsExistingPurchaseID()" // if (IsExistingPurchaseID(request.id)) { // Output the page // ViewTransaction(request.id); } else PrintError("Invalid transaction id", "Id must be a number and must exist in the LP_Purchase table.");