1. <cfajaxproxy cfc="Artists">
  2. <cfoutput><html><head><title>cfAjaxProxy demo</title>
  3. <link rel="stylesheet" href="style.css" type="text/css">
  4. <script type="text/javascript" src="artists.js"></script>
  5. </head>
  6. <body>
  7. <h2>A Cool Web Application</h2>
  8. <form id="nameForm">
  9. First Name: <input type="text" name="firstname" size="10">
  10. Last Name: <input type="text" name="lastname" size="10">
  11. <br>
  12. <input type="button" onclick="isNewName()" value="Check Name">
  13. <span id="message"></span>
  14. </form>
  15. <input type="button" onclick="getArtistCount()" value="Get Artist Count">
  16. </body></html></cfoutput>