Great job!
You learned that:
The pizza maker makes pizza.
The pizza maker puts the sauce on first.
The oven is very hot.
<% End If %>
%@ LANGUAGE="VBSCRIPT" %> <% Option Explicit %>
<% dim txtFirstName dim txtMakes dim txtPutson dim txtOven '------------------------------------------ ' Assign Form Field values to variables; ' Takes off first and last character of the names IF ' that character is an empty space. '------------------------------------------ txtFirstName = RTrim(Request("name")) txtFirstName = LTrim(txtFirstName) txtMakes = (Request("makes")) txtPutson = (Request("putson")) txtOven = (Request("oven")) '--------------------------------- ' Replaces Single Quotes with HTML TAg '--------------------------------- txtFirstName = Replace(txtFirstName,"'","'") %>The pizza maker makes pizza.
The pizza maker puts the sauce on first.
The oven is very hot.