Visual Basic Concepts
The first page in the application is the Menu page, which contains buttons you use to access the data pages. You must create this page and add it to your webclass. For the sake of this tutorial, you can cut and paste the code shown in the procedure below to create the necessary file.
<html>
<head><title>Customer Support</title></head>
<body>
<h1>Call Tracking</h1><br><hr>
<p>Select from the following reporting options to view data:</p>
<form method="POST" id="ShowAllCustomers"><input type="submit" value="Show All Customers" name="btnCust"></form>
<form method="POST" id="ShowAllCalls"><input type="submit" value="Show All Calls" name="btnCalls"></form>
</body></html>
Note If you look in your project directory, you will notice that there is now a file called Menu1.htm. The webclass designer makes a copy of any template webitem you add and uses the copy instead of the original. That way, any changes made to the file do not affect your original.