fangsnclaws /
Main
Examples Using ASP
The time is exactly <% = FormatDateTime(Time,3) %> on <% = MonthName((Month(Now())),True) %> <%= Day(Now()) %>, <%= Year(Now()) %>
on the server this application is running on!
Examples...
Random Number Usage
Random numbers can be used in ... uh ... a number of different ways in your web
pages. This link discusses two diffenent usages and provides examples.
Learn more about Random Number Usage Example
Back to Top
Product Shipment Search
In this example we will use ADO components to access a database
containing product shipment information. We will allow our user
to search by manufacturing plant, by product category ("build to
order" versus "off-the-shelf" product), by specific product, by individual customer, by specific sales order, by time frame, or by any combination of the above.
See the Product Shipment Search Example
Back to Top
Inventory Valuation
In this example we will use ADO components to perform a simple Inventory Valuation of On-Hand stock for our
Wynona's Wagon Warehouse company introduced in the above example.
See the Inventory Valuation Example
Back to Top
Static Examples
This example shows an application constructed with static HTML pages.
These pages were generated in ASP on an Intranet, saved to file, and
uploaded to the web server.
The advantage in this design is that it reduces the load on the server
by "caching" pages that would have been dynamically generated through
ADO connections to the underlying database.
The disadvantage of this design is that it requires active intervention
by the webmaster to keep the content up to date.
To see how this design works in action, click the following link:
Bowling League
Back to Top
Live Example
This example shows a "live" ASP application for a bowling league that
utilizes ADO to dynamically generate HTML browser content.
Even the JavaScript that opens the 'pop-up' window containing indivual
bowler statistics was generated through ASP.
To see how this design was used to create a site for a bowling league,
click the following link:
"LIVE" Bowling League
Back to Top