<% Dim Total
Total = 0 %>
<% if (Request.Form("double_cheese") = "on") then %>
You ordered double cheese.
<% Total = Total + 1.25 %>
<% end if %>
<% if (Request.Form("peppers") = "on") then %>
Your getting some peppers too!
<% Total = Total + .75 %>
<% end if %>
<% if (Request.Form("onions") = "on") then %>
And ONIONS!!!
<% Total = Total + .55 %>
<% end if %>
Add $<%=Total%> to your order.